Index: prolog/croot.c
===================================================================
--- prolog/croot.c	(revision ee4913183f9069abeb45be02a14294bfaf6ad1c4)
+++ prolog/croot.c	(revision 1127e68946488c825c8908c4b11f641470f94a44)
@@ -48,5 +48,5 @@
 /*
    ============================================================================
-	exit(code) -- return control to the BIOS
+	exit() -- return control to the BIOS
    ============================================================================
 */
@@ -77,5 +77,5 @@
 	strcat(buff, "\n");
 	write(2, buff, strlen(buff));
-	exit(EINVAL);
+	exit();
 }
 
@@ -161,4 +161,4 @@
 
 	main(Argc,Argv);	/* call application */
-	exit(0);		/* exit in case the application didn't */
+	exit();			/* exit in case the application didn't */
 }
