mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
12 lines
195 B
C
12 lines
195 B
C
|
#include <stdio.h>
|
||
|
|
||
|
void
|
||
|
foo (void)
|
||
|
{
|
||
|
printf ("TEST2\n");
|
||
|
}
|
||
|
|
||
|
static void (*const init_array []) (void)
|
||
|
__attribute__ ((used, section (".init_array"), aligned (sizeof (void *))))
|
||
|
= { foo };
|