Files
MyrysRover/Code/tools/show_my_version.c
2026-05-27 16:25:47 +02:00

16 lines
321 B
C

#include <stdio.h>
#include <unistd.h>
#include "../common/protocol.h"
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
int main(int argc, char *argv[])
{
(void)show_the_version(42, "why not ?");
fprintf(stderr, "$$$$ %s compiled at %s %s\n",
argv[0], __DATE__, __TIME__);
return 0;
}