]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/unload3mod4.c
test-container: Fix "unused code" warnings on HURD
[thirdparty/glibc.git] / elf / unload3mod4.c
CommitLineData
2e2b6e26
UD
1#include <stdio.h>
2
2103c260
RM
3extern int foo (int x);
4
2e2b6e26
UD
5int
6bar (int x)
7{
8 puts ("bar");
9 fflush (stdout);
10 x = foo (x - 4);
11 puts ("bar after foo");
12 return x;
13}