summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test.c b/test.c
index 86453de..31dee49 100644
--- a/test.c
+++ b/test.c
@@ -2,6 +2,8 @@
#include <stdlib.h>
+int f() { return 13; }
+
void entry(void) {
- exit(42);
+ exit(f());
}