summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-11-05 11:43:27 -0400
committerpommicket <pommicket@gmail.com>2022-11-05 11:43:27 -0400
commitbae6a477b04f7a767678c88089e28dd9e5c5b879 (patch)
treeeeb29337826fc89d5ad0179598fb99719faf5405 /test.c
parentbd54f4f57a56de5b2d8b80949acfd499a62a0bbf (diff)
cleaned up code a bit
Diffstat (limited to 'test.c')
-rw-r--r--test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test.c b/test.c
index f34d4e2..8cf9a82 100644
--- a/test.c
+++ b/test.c
@@ -4,7 +4,8 @@
int x;
void main() {
puts("HellO");
- printf("hello\n");
- _exit(123);
+ puts("there");
+ //printf("hello\n");
+ exit(123);
}