summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/test.c b/test.c
index 8cf9a82..ef50528 100644
--- a/test.c
+++ b/test.c
@@ -2,10 +2,9 @@
#include <stdlib.h>
int x;
-void main() {
- puts("HellO");
- puts("there");
+void entry() {
+ puts("Hello, world!");
//printf("hello\n");
- exit(123);
+ exit(0);
}