]> pd.if.org Git - pdclib.old/blobdiff - functions/stdlib/atexit.c
Add newline translationwq
[pdclib.old] / functions / stdlib / atexit.c
index 8a5f4d7b4db74adc01e9a4e4f699a776060625a3..a81a8cb6ec34f06e1e8174959430c8573afdbc84 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* atexit( void (*)( void ) )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -24,7 +22,7 @@ int atexit( void (*func)( void ) )
     else
     {
         _PDCLIB_regstack[ --_PDCLIB_regptr ] = func;
-       return 0;
+        return 0;
     }
 }