home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-387-Vol-3of3.iso
/
d
/
djdev108.zip
/
INCLUDE
/
ATEXIT.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-22
|
153b
|
10 lines
/* Copyright 1992 DJ Delorie */
struct atexit {
struct atexit *next;
void (*function)(int);
int arg;
};
extern struct atexit *__atexit;