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
Don't emit invalid extra shift character at block boundary by iconv (bug 17197)
[glibc.git]
/
elf
/
unload4mod3.c
blob
4b280bc05b055b36e4ae2c2170cce87692c04a0a
1
#include <stdio.h>
2
3
int
4
__attribute__
((
noinline
))
5
mod3fn1
(
int
x
)
6
{
7
puts
(
"in mod3fn1"
);
8
return
x
+
6
;
9
}
10
11
int
12
mod3fn2
(
int
x
)
13
{
14
puts
(
"in mod3fn2"
);
15
return
mod3fn1
(
x
/
2
) *
2
;
16
}