mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
10 lines
192 B
C
10 lines
192 B
C
|
#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;
|
||
|
}
|