syslinux-3.08-2 sources from FC4
[bootcd.git] / syslinux / com32 / lib / abort.c
1 /*
2  * abort.c
3  */
4
5 #include <stdlib.h>
6 #include <unistd.h>
7
8 void abort(void)
9 {
10   _exit(255);
11 }
12