aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/test.c b/test.c
index 3a39c44..26925e0 100644
--- a/test.c
+++ b/test.c
@@ -1,11 +1,13 @@
#include <stdio.h>
-int add(int, int);
-int subtract(int, int);
+long long hehehaha();
+
+long long addz(long long lhs, long long rhs) {
+ return lhs + rhs + 1;
+}
int main() {
- int a = add(5, 2);
- int b = subtract(3, 8);
- printf("%d %d\n", a, b);
+ long long res = hehehaha();
+ printf("%d\n", res);
return 0;
}