2017-04-14 19:02:05 +02:00

12 lines
193 B
C

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
#ifndef SRC_GENEX_WORKS
#error SRC_GENEX_WORKS not defined
#endif
printf("%s\n", argv[1]);
return EXIT_SUCCESS;
}