X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatexit.c;h=a81a8cb6ec34f06e1e8174959430c8573afdbc84;hb=0711226145f12c37217681b57944860bdeb6ace0;hp=8a5f4d7b4db74adc01e9a4e4f699a776060625a3;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/functions/stdlib/atexit.c b/functions/stdlib/atexit.c index 8a5f4d7..a81a8cb 100644 --- a/functions/stdlib/atexit.c +++ b/functions/stdlib/atexit.c @@ -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; } }