17 lines
243 B
C
17 lines
243 B
C
/*
|
|
* 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 */
|