X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdlib%2Fatexit.c;h=808bcb1176406ff4c855d38e0097dbc32793f012;hp=a81a8cb6ec34f06e1e8174959430c8573afdbc84;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=393020b6e48719d27699dea6b29e53025bbd5123 diff --git a/functions/stdlib/atexit.c b/functions/stdlib/atexit.c index a81a8cb..808bcb1 100644 --- a/functions/stdlib/atexit.c +++ b/functions/stdlib/atexit.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* atexit( void (*)( void ) ) This file is part of the Public Domain C Library (PDCLib). @@ -10,18 +8,18 @@ #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; + _PDCLIB_exitstack[ --_PDCLIB_exitptr ] = func; return 0; } } @@ -29,7 +27,7 @@ int atexit( void (*func)( void ) ) #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" #include static int flags[ 32 ];