20ef3dc45b
there automatically.
17 lines
175 B
C
17 lines
175 B
C
static int x = 1;
|
|
|
|
static void
|
|
foo(void)
|
|
{
|
|
x = 0;
|
|
}
|
|
|
|
static void (*fp) (void) __attribute__((__section__(".init_array"), __used__)) =
|
|
foo;
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
return x;
|
|
}
|