summaryrefslogtreecommitdiff
path: root/libc/elf/circlemod2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/elf/circlemod2.c')
-rw-r--r--libc/elf/circlemod2.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libc/elf/circlemod2.c b/libc/elf/circlemod2.c
new file mode 100644
index 000000000..ed8c1175f
--- /dev/null
+++ b/libc/elf/circlemod2.c
@@ -0,0 +1,9 @@
+extern void circlemod2_undefined (void);
+extern int circlemod3 (void);
+
+int
+circlemod2 (void)
+{
+ circlemod2_undefined ();
+ return circlemod3 ();
+}