mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 08:36:05 -04:00
18 lines
172 B
C
18 lines
172 B
C
#include <stdio.h>
|
|
|
|
void
|
|
foo2 (void)
|
|
{
|
|
printf ("MAIN2\n");
|
|
}
|
|
|
|
asm (".symver foo2,foo@@FOO2");
|
|
|
|
void
|
|
foo1 (void)
|
|
{
|
|
printf ("MAIN1\n");
|
|
}
|
|
|
|
asm (".symver foo1,foo@FOO1");
|