2018-12-06 01:40:31 +11:00
|
|
|
/*
|
|
|
|
* fake-values.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2018-12-06 02:00:11 +11:00
|
|
|
#include "funcs.h"
|
2018-12-06 01:40:31 +11:00
|
|
|
|
2018-12-06 02:04:09 +11:00
|
|
|
int verbosity;
|
|
|
|
|
2018-12-06 01:44:04 +11:00
|
|
|
int main(int argc, char *argv[])
|
2018-12-06 01:40:31 +11:00
|
|
|
{
|
|
|
|
fprintf(stderr, "fake values - %s %s\n", __DATE__, __TIME__);
|
|
|
|
|
2018-12-06 02:04:09 +11:00
|
|
|
verbosity = 1;
|
2018-12-06 02:00:11 +11:00
|
|
|
printf("%d\n", random1000(0));
|
|
|
|
|
2018-12-06 01:40:31 +11:00
|
|
|
return 0;
|
|
|
|
}
|