]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/atexit.c
Whitespace cleanups.
[pdclib] / functions / stdlib / atexit.c
index 8a5f4d7b4db74adc01e9a4e4f699a776060625a3..42a98ed0dec0689537dca0a2373fd7f7e9056b4b 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* atexit( void (*)( void ) )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -24,14 +20,16 @@ int atexit( void (*func)( void ) )
     else
     {
         _PDCLIB_regstack[ --_PDCLIB_regptr ] = func;
-       return 0;
+        return 0;
     }
 }
 
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
+
 #include <assert.h>
 
 static int flags[ 32 ];