mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 17:20:03 -04:00
16 lines
116 B
C
16 lines
116 B
C
#include <stdio.h>
|
|
|
|
extern void foo (void);
|
|
|
|
void
|
|
foo (void)
|
|
{
|
|
printf ("DSO\n");
|
|
}
|
|
|
|
void
|
|
bar (void)
|
|
{
|
|
foo ();
|
|
}
|