xref: /minix3/minix/lib/libsys/sys_abort.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 #include "syslib.h"
2 #include <stdarg.h>
3 #include <unistd.h>
4 
sys_abort(int how)5 int sys_abort(int how)
6 {
7 /* Something awful has happened.  Abandon ship. */
8 
9   message m;
10 
11   m.m_lsys_krn_sys_abort.how = how;
12   return(_kernel_call(SYS_ABORT, &m));
13 }
14