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