Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
9ed821d7e5d875a3395740a9cc2545671fa429b7
/
.
/
ap
/
libc
/
glibc
/
glibc-2.22
/
elf
/
tst-deep1mod1.c
blob: cc922e6ea5f05d4956a96582b571ed8b53eefb38 [
file
] [
log
] [
blame
]
lh
9ed821d
2023-04-07 01:36:19 -0700
[
diff
] [
blame^
]
1
#include
<stdio.h>
2
int
3
foo
(
void
)
4
{
5
printf
(
"%s:%s\n"
,
__FILE__
,
__func__
);
6
return
1
;
7
}
8
9
int
10
baz
(
void
)
11
{
12
printf
(
"%s:%s\n"
,
__FILE__
,
__func__
);
13
return
20
;
14
}