S390: Move utf8-utf32-z9.c to multiarch folder and use s390_libc_ifunc_expr macro.
[glibc.git] / elf / unload3mod4.c
blob52f808e79b76a2045e16093d114aa0a47732e3dc
1 #include <stdio.h>
3 extern int foo (int x);
5 int
6 bar (int x)
8 puts ("bar");
9 fflush (stdout);
10 x = foo (x - 4);
11 puts ("bar after foo");
12 return x;