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
Update from translation team.
[glibc.git]
/
elf
/
unload4mod4.c
blob
ba5a144d3822d46266463eaae776edf10f9f27da
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
int
5
__attribute__
((
noinline
))
6
baz
(
int
x
)
7
{
8
abort
();
9
}
10
11
int
12
bar
(
int
x
)
13
{
14
puts
(
"in bar"
);
15
return
baz
(
x
+
1
) +
2
;
16
}