about summary refs log tree commit diff
path: root/support/links-dso-program.cc
blob: dba6976c0609a33273e0e3a06992c811163d63da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

using namespace std;

int
main (int argc, char **argv)
{
  /* Complexity to keep gcc from optimizing this away.  */
  cout << (argc > 1 ? argv[1] : "null");
  return 0;
}