mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 07:20:11 +00:00
12 lines
192 B
C++
12 lines
192 B
C++
|
#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;
|
||
|
}
|