diff options
Diffstat (limited to 'contrib/syslinux-4.02/com32/lib/atexit.h')
-rw-r--r-- | contrib/syslinux-4.02/com32/lib/atexit.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/com32/lib/atexit.h b/contrib/syslinux-4.02/com32/lib/atexit.h new file mode 100644 index 0000000..917beb5 --- /dev/null +++ b/contrib/syslinux-4.02/com32/lib/atexit.h @@ -0,0 +1,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 */ |