]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/unload4mod3.c
INSTALL, install.texi: minor updates, regenerate
[thirdparty/glibc.git] / elf / unload4mod3.c
CommitLineData
193af754
UD
1#include <stdio.h>
2
3int
4__attribute__((noinline))
5mod3fn1 (int x)
6{
7 puts ("in mod3fn1");
8 return x + 6;
9}
10
11int
12mod3fn2 (int x)
13{
14 puts ("in mod3fn2");
15 return mod3fn1 (x / 2) * 2;
16}