]>
| Commit | Line | Data |
|---|---|---|
| 3f7de0e7 | 1 | /* This program is used to test objcopy, readelf and strip. */ |
| 252b5132 | 2 | |
| 84865015 | 3 | extern int strcmp (const char *, const char *); |
| c9bc3b3d | 4 | extern int printf (const char *, ...); |
| 0691c3ca | 5 | |
| 252b5132 RH |
6 | int common; |
| 7 | int global = 1; | |
| 8 | static int local = 2; | |
| 84865015 | 9 | static const char string[] = "string"; |
| 252b5132 RH |
10 | |
| 11 | int | |
| c9bc3b3d | 12 | fn (void) |
| 252b5132 RH |
13 | { |
| 14 | return 3; | |
| 15 | } | |
| 16 | ||
| 17 | int | |
| c9bc3b3d | 18 | main (void) |
| 252b5132 RH |
19 | { |
| 20 | if (common != 0 | |
| 21 | || global != 1 | |
| 22 | || local != 2 | |
| 23 | || strcmp (string, "string") != 0) | |
| 24 | { | |
| 25 | printf ("failed\n"); | |
| c9bc3b3d | 26 | return 1; |
| 252b5132 RH |
27 | } |
| 28 | ||
| 29 | printf ("ok\n"); | |
| c9bc3b3d | 30 | return 0; |
| 252b5132 | 31 | } |