summaryrefslogtreecommitdiff
path: root/test/hai.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/hai.c')
-rw-r--r--test/hai.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/hai.c b/test/hai.c
index 25c25ae..7791fbb 100644
--- a/test/hai.c
+++ b/test/hai.c
@@ -1,7 +1,6 @@
-#include "hai.h"
-
#include <stdio.h>
-void hai() {
- printf("lol\n");
-} \ No newline at end of file
+int main() {
+ printf("Hello world!\n");
+ return 0;
+}