summaryrefslogtreecommitdiff
path: root/com32/lib/atexit.h
blob: 917beb574a0cf3d85f77cbb0bd22f8b6fbcfb34b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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 */