summaryrefslogtreecommitdiff
path: root/ctoclean/call.c
diff options
context:
space:
mode:
Diffstat (limited to 'ctoclean/call.c')
-rw-r--r--ctoclean/call.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/ctoclean/call.c b/ctoclean/call.c
new file mode 100644
index 0000000..be5fe48
--- /dev/null
+++ b/ctoclean/call.c
@@ -0,0 +1,10 @@
+#include <inttypes.h>
+#include <stdio.h>
+
+extern int64_t square(int64_t);
+
+int64_t call_square(int64_t);
+int64_t call_square(int64_t x) {
+ return square(x);
+}
+