Use common bits/shm.h for more architectures.
[glibc.git] / support / links-dso-program.cc
blobdba6976c0609a33273e0e3a06992c811163d63da
1 #include <iostream>
3 using namespace std;
5 int
6 main (int argc, char **argv)
8 /* Complexity to keep gcc from optimizing this away. */
9 cout << (argc > 1 ? argv[1] : "null");
10 return 0;