blob: 917beb574a0cf3d85f77cbb0bd22f8b6fbcfb34b [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;
};
#endif /* ATEXIT_H */