retire 64-bit conversion functions
[minix3.git] / lib / libsys / sys_abort.c
bloba9403e54f2e8e45d70f214349ed788a7898c3723
1 #include "syslib.h"
2 #include <stdarg.h>
3 #include <unistd.h>
5 int sys_abort(int how)
7 /* Something awful has happened. Abandon ship. */
9 message m;
11 m.ABRT_HOW = how;
12 return(_kernel_call(SYS_ABORT, &m));