mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 08:36:05 -04:00
17 lines
137 B
C
17 lines
137 B
C
#include <stdio.h>
|
|
|
|
extern void foo ();
|
|
extern void foobar ();
|
|
|
|
void
|
|
foo ()
|
|
{
|
|
printf ("strong foo\n");
|
|
}
|
|
|
|
void
|
|
foobar ()
|
|
{
|
|
foo ();
|
|
}
|