repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove use of INTDEF/INTUSE in nptl
[glibc.git]
/
elf
/
tst-piemod1.c
blob
ad439da800f5a65f3001966c5f222ca71e7a7931
1
#include <stdio.h>
2
3
int
4
foo
(
void
)
5
{
6
return
21
;
7
}
8
9
int
10
main
(
void
)
11
{
12
int
val
=
foo
();
13
if
(
val
!=
34
)
14
{
15
printf
(
"foo () returned %d
\n
"
,
val
);
16
return
1
;
17
}
18
19
return
0
;
20
}