mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +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 };
|