]> pd.if.org Git - pdclib.old/blobdiff - functions/stdlib/atexit.c
Merged branch stdio_rewrite back into trunk.
[pdclib.old] / functions / stdlib / atexit.c
index 558190f4b97dc89b49e019eb115fdbf06edf042d..a81a8cb6ec34f06e1e8174959430c8573afdbc84 100644 (file)
@@ -22,7 +22,7 @@ int atexit( void (*func)( void ) )
     else
     {
         _PDCLIB_regstack[ --_PDCLIB_regptr ] = func;
-       return 0;
+        return 0;
     }
 }