]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/_Exit.c
Whitespace cleanups.
[pdclib] / functions / stdlib / _Exit.c
index 7871385d8a025775ad995e641b2fc0be882e27fa..a1375d96c9752493b158c53f549662bd8b5817a1 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* _Exit( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -8,10 +6,11 @@
 
 #include <stdlib.h>
 #include <stdio.h>
-#include <_PDCLIB_glue.h>
 
 #ifndef REGTEST
 
+#include "_PDCLIB_glue.h"
+
 void _Exit( int status )
 {
     /* TODO: Flush and close open streams. Remove tmpfile() files. Make this
@@ -23,7 +22,8 @@ void _Exit( int status )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {