]> pd.if.org Git - pdclib/commitdiff
exit() and its macros were added a bit hasty; fixed.
authorsolar <unknown>
Fri, 23 Dec 2005 15:52:10 +0000 (15:52 +0000)
committersolar <unknown>
Fri, 23 Dec 2005 15:52:10 +0000 (15:52 +0000)
includes/stdlib.h

index 252ab9213d585213d732f0c9cc39efdf53777e1d..b48dae99da6211fc731d0c2dfecad4eaed0b06de 100644 (file)
@@ -26,8 +26,8 @@ typedef _PDCLIB_size_t size_t;
 #endif
 
 #define NULL         _PDCLIB_NULL
-#define EXIT_SUCCESS _PDCLIB_SUCCESS;
-#define EXIT_FAILURE _PDCLIB_FAILURE;
+#define EXIT_SUCCESS _PDCLIB_SUCCESS
+#define EXIT_FAILURE _PDCLIB_FAILURE
 
 /* Numeric conversion functions */
 
@@ -55,7 +55,7 @@ void srand( unsigned int seed );
 /* Communication with the environment */
 
 void abort();
-void exit();
+void exit( int status );
 
 /* Searching and sorting */