diff options
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -1,13 +1,7 @@ // temporary test file -#include<stdio.h> #include <stdlib.h> -int f() { - return 7; -} - void entry(void) { - printf("%d\n", f()); - exit(0); + exit(42); } |