blob: a60d641e233d258b91d5e92bbfed788fd2cd118a [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 */