This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

18 lines
237 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 */