summaryrefslogtreecommitdiff
path: root/com32/lib/atexit.h
blob: b3aabaf77b77589b79e89f39c6923969c1eec87c (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 */