/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1985-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* David Korn <dgk@research.att.com> *
* Phong Vo <kpv@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* ANSI C atexit()
* arrange for func to be called LIFO on exit()
*/
#include <ast.h>
#if _lib_atexit
#else
#if _lib_onexit || _lib_on_exit
#if !_lib_onexit
#endif
extern int onexit(void(*)(void));
int
{
}
#else
struct list
{
void (*func)(void);
};
extern void _exit(int);
int
{
register struct list* p;
funclist = p;
return(0);
}
void
_ast_atexit(void)
{
register struct list* p;
while (p = funclist)
{
(*p->func)();
}
}
#if _std_cleanup
#if _lib__cleanup
extern void _cleanup(void);
#endif
void
{
_ast_atexit();
#if _lib__cleanup
_cleanup();
#endif
}
#else
void
_cleanup(void)
{
_ast_atexit();
}
#endif
#endif
#endif