8 lines
98 B
C
8 lines
98 B
C
extern int foo;
|
|
|
|
static void
|
|
__attribute__ ((unused, constructor))
|
|
set_foo (void)
|
|
{
|
|
foo = 30;
|
|
}
|