And of course, as much as I've tried to be careful I forgot to add this file in

r6116 :(
This commit is contained in:
Tomas Hruby 2010-02-09 15:36:29 +00:00
parent c9da61022b
commit d845891a50

11
lib/syslib/kernel_call.c Normal file
View file

@ -0,0 +1,11 @@
#include <lib.h>
#include <minix/syslib.h>
PUBLIC int _kernel_call(int syscallnr, message *msgptr)
{
int status;
msgptr->m_type = syscallnr;
_do_kernel_call(msgptr);
return(msgptr->m_type);
}