syslinux-3.08-2 sources from FC4
[bootcd.git] / syslinux / 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 }