summaryrefslogtreecommitdiff
path: root/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'hello.c')
-rw-r--r--hello.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hello.c b/hello.c
index 960ef05..b3a2683 100644
--- a/hello.c
+++ b/hello.c
@@ -1,3 +1,5 @@
#include "hello.h"
-int main() {return 0;}
+int test() {return 45; }
+
+int main() {return test();}