]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/exit.c
Moved struct definition to internal header.
[pdclib] / functions / stdlib / exit.c
index f093fe048bfd8a03923b7480167bf6e5f63e404b..520757d501bd04667ae2aa3380de297c0c0979c4 100644 (file)
 
 #ifndef REGTEST
 
-/* TODO: Required by both atexit() and exit(). */
-struct _PDCLIB_exitfunc_t
-{
-    struct _PDCLIB_exitfunc_t * next;
-    void (*func)( void );
-};
-
 struct _PDCLIB_exitfunc_t * regstack = NULL;
 
 void exit( int status )