summaryrefslogtreecommitdiff
path: root/libc/elf/testobj6.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/elf/testobj6.c')
-rw-r--r--libc/elf/testobj6.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/libc/elf/testobj6.c b/libc/elf/testobj6.c
new file mode 100644
index 000000000..fcba01631
--- /dev/null
+++ b/libc/elf/testobj6.c
@@ -0,0 +1,19 @@
+#include "testobj.h"
+
+int
+obj6func1 (int a __attribute__ ((unused)))
+{
+ return 77;
+}
+
+int
+obj6func2 (int a)
+{
+ return foo (a) + 46;
+}
+
+int
+preload (int a)
+{
+ return a;
+}