mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
10 lines
201 B
C
10 lines
201 B
C
static int seven = 7;
|
|
static int *__attribute__((section("auto"))) auto_10 = &seven;
|
|
|
|
int
|
|
eight (void)
|
|
{
|
|
extern int *__start_auto[], *__stop_auto[];
|
|
return *auto_10 + __stop_auto - __start_auto;
|
|
}
|