mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +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 };
|