Initial code release
[external/syslinux.git] / com32 / lib / atexit.c
1 /*
2  * atexit.c
3  */
4
5 #include <stdlib.h>
6
7 int atexit(void (*fctn) (void))
8 {
9     return on_exit((void (*)(int, void *))fctn, NULL);
10 }