projects
/
platform
/
upstream
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Mention IFUNC enhancements to testsuite in NEWS.
[platform/upstream/glibc.git]
/
elf
/
unload4mod4.c
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
}