Blame support/links-dso-program.cc

Packit Bot 3f3af5
#include <iostream>
Packit Bot 3f3af5
Packit Bot 3f3af5
using namespace std;
Packit Bot 3f3af5
Packit Bot 3f3af5
int
Packit Bot 3f3af5
main (int argc, char **argv)
Packit Bot 3f3af5
{
Packit Bot 3f3af5
  /* Complexity to keep gcc from optimizing this away.  */
Packit Bot 3f3af5
  cout << (argc > 1 ? argv[1] : "null");
Packit Bot 3f3af5
  return 0;
Packit Bot 3f3af5
}