Update release readme after making 2.43.1 release
[binutils-gdb.git] / ld / testsuite / ld-elf / pr2404b.c
blob34c3c163eab4f11d90c0b3f60ff8aef1b5f68aa9
1 #include <stdio.h>
3 extern int bar (void);
5 int times = -1;
6 int time1;
8 int
9 main ()
11 printf ("times: %d\n", times);
12 times = 20;
13 printf ("times: %d\n", times);
15 printf ("time1: %d\n", time1);
16 time1 = 10;
17 printf ("time1: %d\n", time1);
18 bar ();
20 return 0;