mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 00:00:06 +00:00
13 lines
100 B
C
13 lines
100 B
C
|
int foo (void);
|
||
|
int weak (void);
|
||
|
|
||
|
int foo (void)
|
||
|
{
|
||
|
return 10;
|
||
|
}
|
||
|
|
||
|
int weak (void)
|
||
|
{
|
||
|
return 30;
|
||
|
}
|