mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
13 lines
110 B
C
13 lines
110 B
C
|
extern __thread int *foo;
|
||
|
|
||
|
static int x;
|
||
|
|
||
|
extern void bar (void);
|
||
|
|
||
|
int
|
||
|
_start ()
|
||
|
{
|
||
|
foo = &x;
|
||
|
return 0;
|
||
|
}
|