X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fatexit.c;h=89832f1ea25dd4f691cd198c3acb286b612904de;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=14363566a8147dba4f6c6c7962a9c62ea26eb61f;hpb=5c311ed91d33b96bd39b80bc16cbe4951de35ac6;p=pdclib diff --git a/functions/stdlib/atexit.c b/functions/stdlib/atexit.c index 1436356..89832f1 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,40 +8,38 @@ #ifndef REGTEST -extern struct _PDCLIB_exitfunc_t * regstack; +extern void (*_PDCLIB_regstack[])( void ); +extern size_t _PDCLIB_regptr; int atexit( void (*func)( void ) ) { - struct _PDCLIB_exitfunc_t * regfunc = (struct _PDCLIB_exitfunc_t *)malloc( sizeof( struct _PDCLIB_exitfunc_t ) ); - if ( regfunc == NULL ) + if ( _PDCLIB_regptr == 0 ) { return -1; } else { - regfunc->func = func; - regfunc->next = regstack; - regstack = regfunc; - return 0; + _PDCLIB_regstack[ --_PDCLIB_regptr ] = 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 ) { @@ -53,9 +47,8 @@ static void checkhandler() } } -int main() +int main( void ) { - BEGIN_TESTS; TESTCASE( atexit( &checkhandler ) == 0 ); for ( int i = 0; i < 31; ++i ) {