aboutsummaryrefslogtreecommitdiffhomepage
path: root/test2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test2.c')
-rw-r--r--test2.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test2.c b/test2.c
index 13ed47c..7d39164 100644
--- a/test2.c
+++ b/test2.c
@@ -13,3 +13,11 @@ v2d add(v2d a, v2d b)
addp(&a, &b);
return a;
}
+
+short s(int a, int b) {
+ return a + b;
+}
+
+int i() {
+ return s(1,2);
+}