]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/_Exit.c
Comment cleanups.
[pdclib] / functions / stdlib / _Exit.c
index 4a24b29a8311b8c18960226176a80f76d20865a2..24351c906491967ad4c31aef50ded4876e5ac1fb 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* _Exit( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -7,13 +5,16 @@
 */
 
 #include <stdlib.h>
-#include <_PDCLIB_glue.h>
+#include <stdio.h>
 
 #ifndef REGTEST
+#include <_PDCLIB_glue.h>
 
 void _Exit( int status )
 {
-    /* TODO: Flush and close open streams. Remove tmpfile() files. */
+    /* TODO: Flush and close open streams. Remove tmpfile() files. Make this
+       called on process termination automatically.
+    */
     _PDCLIB_Exit( status );
 }