links-dso-program.cc 192 B

1234567891011
  1. #include <iostream>
  2. using namespace std;
  3. int
  4. main (int argc, char **argv)
  5. {
  6. /* Complexity to keep gcc from optimizing this away. */
  7. cout << (argc > 1 ? argv[1] : "null");
  8. return 0;
  9. }