mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 08:36:05 -04:00
11 lines
101 B
C
11 lines
101 B
C
extern void bar (void);
|
|
extern void foo (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
foo ();
|
|
bar ();
|
|
return 0;
|
|
}
|