mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 00:24:52 -04:00
20 lines
165 B
C
20 lines
165 B
C
#include <stdio.h>
|
|
|
|
#pragma weak foo
|
|
|
|
extern void foo ();
|
|
extern void foobar ();
|
|
|
|
void
|
|
foo ()
|
|
{
|
|
printf ("weak foo\n");
|
|
}
|
|
|
|
int
|
|
main ()
|
|
{
|
|
foobar ();
|
|
return 0;
|
|
}
|