summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test.c b/test.c
new file mode 100644
index 0000000..8ba9bce
--- /dev/null
+++ b/test.c
@@ -0,0 +1,10 @@
+#include <tcclib.h>
+
+extern int add(int a, int b);
+
+int start() {
+ int a = 3;
+ int b = 4;
+ printf("add(%i, %i): %i\n", a, b, add(a, b));
+ return 0;
+}