X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatexit.c;h=11aae09d0d0ca71b08ce1c5f718e58215f437536;hb=15cd62244797b9aeb3279484f8e760778c52bc4e;hp=0d61e32a818f39c9f6645f279bd6331ab5bfdb4a;hpb=0788e1f853cae7be12203116b0d277ab1d653afb;p=pdclib diff --git a/functions/stdlib/atexit.c b/functions/stdlib/atexit.c index 0d61e32..11aae09 100644 --- a/functions/stdlib/atexit.c +++ b/functions/stdlib/atexit.c @@ -1,7 +1,3 @@ -/* $Id$ */ - -/* Release $Name$ */ - /* atexit( void (*)( void ) ) This file is part of the Public Domain C Library (PDCLib). @@ -12,38 +8,40 @@ #ifndef REGTEST -extern void (*_PDCLIB_regstack[])( void ); -extern size_t _PDCLIB_regptr; +extern void (*_PDCLIB_exitstack[])( void ); +extern size_t _PDCLIB_exitptr; int atexit( void (*func)( void ) ) { - if ( _PDCLIB_regptr == 0 ) + if ( _PDCLIB_exitptr == 0 ) { return -1; } else { - _PDCLIB_regstack[ --_PDCLIB_regptr ] = func; - return 0; + _PDCLIB_exitstack[ --_PDCLIB_exitptr ] = func; + return 0; } } #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" + #include static int flags[ 32 ]; -static void counthandler() +static void counthandler( void ) { - static int rc = 0; - flags[ rc ] = rc; - ++rc; + static int count = 0; + flags[ count ] = count; + ++count; } -static void checkhandler() +static void checkhandler( void ) { for ( int i = 0; i < 31; ++i ) { @@ -51,9 +49,8 @@ static void checkhandler() } } -int main() +int main( void ) { - BEGIN_TESTS; TESTCASE( atexit( &checkhandler ) == 0 ); for ( int i = 0; i < 31; ++i ) {