mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-07 10:00:07 +00:00
8 lines
65 B
C
8 lines
65 B
C
|
extern int bar (void);
|
||
|
|
||
|
int
|
||
|
foo (void)
|
||
|
{
|
||
|
return 10 + bar ();
|
||
|
}
|