]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/atexit.c
Removed SVN keyword tags.
[pdclib] / functions / stdlib / atexit.c
index 558190f4b97dc89b49e019eb115fdbf06edf042d..a2c1598dd7b1371d97c85f7f2d0d9de17db2aea4 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* atexit( void (*)( void ) )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -22,7 +20,7 @@ int atexit( void (*func)( void ) )
     else
     {
         _PDCLIB_regstack[ --_PDCLIB_regptr ] = func;
-       return 0;
+        return 0;
     }
 }