summaryrefslogtreecommitdiff
path: root/elf/unload3mod4.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-03-03 14:03:17 +0000
committerJakub Jelinek <jakub@redhat.com>2005-03-03 14:03:17 +0000
commita3f1b27bd61b4bd1645e90953eb09ae2aa3ef9e9 (patch)
treea8e5716872cfa45964d06994f9598a523cd2b3a9 /elf/unload3mod4.c
parentd0fec8d06cc2234c8114b51f630466eff9d5f841 (diff)
Updated to fedora-glibc-20050303T1335
Diffstat (limited to 'elf/unload3mod4.c')
-rw-r--r--elf/unload3mod4.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/elf/unload3mod4.c b/elf/unload3mod4.c
new file mode 100644
index 0000000000..4586ff7383
--- /dev/null
+++ b/elf/unload3mod4.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+int
+bar (int x)
+{
+ puts ("bar");
+ fflush (stdout);
+ x = foo (x - 4);
+ puts ("bar after foo");
+ return x;
+}