summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-05-26 11:33:41 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-05-26 11:48:47 -0400
commit98c08a2b90d751282d36970cf73b5359092d28eb (patch)
tree48d2a284421e23e8a380357271b48cf6f5212955
parent49619d7ecf17ca38a2f05bce50a402a02e4aebd1 (diff)
Added 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;
+}