mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 00:57:28 -04: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 };
|