blob: a05ac6ebcf73f819c63bbe47e196440fd21b9d65 [file] [log] [blame]
/*
* atexit.h
*
* atexit()/on_exit() internal definitions
*/
#ifndef ATEXIT_H
#define ATEXIT_H
struct atexit {
void (*fctn)(int, void *);
void *arg; /* on_exit() parameter */
struct atexit *next;
};
extern struct atexit *__atexit_list;
#endif /* ATEXIT_H */