TP 13 exo1: Add more library functions
[TD_C.git] / TP_13 / exo1 / src / main.c
index 68b30087ae455f71e44db62e49cbb62f8161bac1..315ed331a2007a350bef7fdc06cf70478041aee0 100644 (file)
@@ -1,9 +1,8 @@
+#include <stdlib.h>
 #include <stdio.h>
 
-#include "macros.h"
-
 int main() {
     printf("Hello world\n");
 
-    return 0;
+    exit(EXIT_SUCCESS);
 }