blob: d28a28a0d09c743c863a53ea41a9d3563320360f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include <stdio.h>
int
main (int argc, char **argv)
{
/* Complexity to keep gcc from optimizing this away. */
printf ("This is a test %s.\n", argc > 1 ? argv[1] : "null");
return 0;
}
|