DD2-monitor/fake-values.c

13 lines
156 B
C
Raw Normal View History

2018-12-05 15:40:31 +01:00
/*
* fake-values.c
*/
#include <stdio.h>
2018-12-05 15:44:04 +01:00
int main(int argc, char *argv[])
2018-12-05 15:40:31 +01:00
{
fprintf(stderr, "fake values - %s %s\n", __DATE__, __TIME__);
return 0;
}