mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-15 18:27:49 +01: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;
|
|
}
|