allwinner_a64/android/external/syslinux/com32/lib/atexit.h
2018-08-08 16:14:42 +08:00

16 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 */