mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-04 10:50:07 +00:00
9 lines
98 B
C
9 lines
98 B
C
#include <stdio.h>
|
|
|
|
int
|
|
bar (void)
|
|
{
|
|
printf ("In %s:%s\n", __FILE__, __func__);
|
|
return 123;
|
|
}
|