Lines Matching full:xatexit
11 @deftypefun int xatexit (void (*@var{fn}) (void))
15 failure. If you use @code{xatexit} to register functions, you must use
23 If you use xatexit, you must call xexit instead of exit. */
50 struct xatexit {
51 struct xatexit *next; /* next in list */
58 static struct xatexit xatexit_first;
61 static struct xatexit *xatexit_head = &xatexit_first;
67 xatexit (void (*fn) (void))
69 register struct xatexit *p;
78 if ((p = (struct xatexit *) malloc (sizeof *p)) == NULL)
93 register struct xatexit *p;