echo.c 193 B

1234567891011
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(int argc, char* argv[])
  4. {
  5. #ifndef SRC_GENEX_WORKS
  6. #error SRC_GENEX_WORKS not defined
  7. #endif
  8. printf("%s\n", argv[1]);
  9. return EXIT_SUCCESS;
  10. }