Add prototype for printf() and make type of "string" array be "char" in
[binutils.git] / binutils / testsuite / binutils-all / testprog.c
blob6ead98e721f08d2a8e20239b866d0826172b7ff6
1 /* This program is used to test objcopy, readelf and strip. */
3 extern int strcmp (char *, const char *);
4 extern int printf (const char *, ...);
6 int common;
7 int global = 1;
8 static int local = 2;
9 static char string[] = "string";
11 int
12 fn (void)
14 return 3;
17 int
18 main (void)
20 if (common != 0
21 || global != 1
22 || local != 2
23 || strcmp (string, "string") != 0)
25 printf ("failed\n");
26 return 1;
29 printf ("ok\n");
30 return 0;