mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 01:00:07 +00:00
9 lines
72 B
C
9 lines
72 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
foo (int x)
|
||
|
{
|
||
|
puts ("foo");
|
||
|
return x * 2;
|
||
|
}
|