summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-05-26 12:03:44 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-05-26 12:03:44 -0400
commit76141ed373edcc8ef3bb7e0d7a4a26a4a5539990 (patch)
treec83e7b273f87325f52716ccef26e0e04c92cf3b2
parent89e61459e70f34e7a3acac92d1cd73d1713f98a0 (diff)
Added `test2.c`.
-rw-r--r--test2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test2.c b/test2.c
new file mode 100644
index 0000000..fb75b0a
--- /dev/null
+++ b/test2.c
@@ -0,0 +1,6 @@
+#include <tcclib.h>
+#include "test2.h"
+
+int add(int a, int b) {
+ return a + b;
+}