mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-03 22:53:37 +08:00
8 lines
65 B
C
8 lines
65 B
C
|
extern int bar (void);
|
||
|
|
||
|
int
|
||
|
foo (void)
|
||
|
{
|
||
|
return 10 + bar ();
|
||
|
}
|