mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
8 lines
75 B
C
8 lines
75 B
C
#include <stdio.h>
|
|
|
|
int
|
|
baz (int x)
|
|
{
|
|
puts ("in baz");
|
|
return x * 4;
|
|
}
|