summaryrefslogtreecommitdiff
path: root/elf/dblloadmod2.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-09-06 01:03:05 +0000
committerUlrich Drepper <drepper@redhat.com>2001-09-06 01:03:05 +0000
commit3fac0001581df9237b58c0180bc7f968dfabc3c9 (patch)
tree477072929cbd57e0bd095b41de533ea903a1ae4e /elf/dblloadmod2.c
parent9cd9ea1068e85dc5a211543b5ba4637ffc6df8be (diff)
Update.
2001-09-05 Ulrich Drepper <drepper@redhat.com> * elf/Makefile: Add rules to build new tests. Don't run them yet since they both fail. * elf/dblload.c: New file. * elf/dblloadmod1.c: New file. * elf/dblloadmod2.c: New file. * elf/dblloadmod3.c: New file. * elf/dblunload.c: New file.
Diffstat (limited to 'elf/dblloadmod2.c')
-rw-r--r--elf/dblloadmod2.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/elf/dblloadmod2.c b/elf/dblloadmod2.c
new file mode 100644
index 0000000000..261af2b580
--- /dev/null
+++ b/elf/dblloadmod2.c
@@ -0,0 +1,13 @@
+extern int bar (void);
+
+int
+baz (void)
+{
+ return -42;
+}
+
+int
+xyzzy (void)
+{
+ return 10 + bar ();
+}