nomalloc.c
changeset 8 96d16dfe787a
parent 0 af501b0c1716
child 9 c3fecc82ade6
--- a/nomalloc.c
+++ b/nomalloc.c
@@ -5,6 +5,7 @@
  */
 
 #include <stdio.h>
+#include <stdlib.h>
 
 struct Names {
     char *name;
@@ -30,5 +31,5 @@
     setStruct (&names);
     printStruct (&names);
 
-    return 0;
+    return EXIT_SUCCESS;
 }