links-dso-program-c.c 192 B

123456789
  1. #include <stdio.h>
  2. int
  3. main (int argc, char **argv)
  4. {
  5. /* Complexity to keep gcc from optimizing this away. */
  6. printf ("This is a test %s.\n", argc > 1 ? argv[1] : "null");
  7. return 0;
  8. }