mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-21 05:07:54 +01:00
10 lines
91 B
C
10 lines
91 B
C
extern int bar (void);
|
|
extern int foo (void);
|
|
|
|
int
|
|
x (void)
|
|
{
|
|
foo ();
|
|
return bar ();
|
|
}
|