mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 18:34:45 +00:00
6 lines
157 B
C
6 lines
157 B
C
|
extern void foo (void);
|
||
|
|
||
|
static void (*const init_array []) (void)
|
||
|
__attribute__ ((used, section (".init_array"), aligned (sizeof (void *))))
|
||
|
= { foo };
|