summaryrefslogtreecommitdiff
path: root/elf/global.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-03-04 19:51:54 +0000
committerUlrich Drepper <drepper@redhat.com>2001-03-04 19:51:54 +0000
commit273a3cfb9998b1370657a95f717019c70ec8eb06 (patch)
treead370b0b0e31189cb461520e85a846b7760e11e9 /elf/global.c
parentbd575f16b497e22fb421f385b6919fcb54af12e4 (diff)
Update.
* elf/global.c: New file. * elf/globalmod1.c: New file. * elf/Makefile: Add rules to build and run global.
Diffstat (limited to 'elf/global.c')
-rw-r--r--elf/global.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/elf/global.c b/elf/global.c
new file mode 100644
index 0000000000..6a4d9604eb
--- /dev/null
+++ b/elf/global.c
@@ -0,0 +1,7 @@
+extern int test (void);
+
+int
+main()
+{
+ return test ();
+}