tcl global directive outside proc body does nothing (ld)
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / pr2404b.c
CommitLineData
cec2c50d
L
1#include <stdio.h>
2
3extern int bar (void);
4
5int times = -1;
f350fc2e 6int time1;
cec2c50d
L
7
8int
9main ()
10{
11 printf ("times: %d\n", times);
12 times = 20;
13 printf ("times: %d\n", times);
14
f350fc2e
CL
15 printf ("time1: %d\n", time1);
16 time1 = 10;
aa684341 17 printf ("time1: %d\n", time1);
cec2c50d
L
18 bar ();
19
20 return 0;
21}
This page took 0.354483 seconds and 4 git commands to generate.