mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-12 03:05:37 +00: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;
|
|
}
|