2009-10-01 16:00:27 +02:00
|
|
|
#include "inc.h"
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <minix/com.h>
|
|
|
|
#include <minix/callnr.h>
|
|
|
|
#include <minix/vfsif.h>
|
|
|
|
|
2011-11-22 11:46:55 +01:00
|
|
|
/*===========================================================================*
|
|
|
|
* do_noop *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int do_noop(void)
|
2011-11-22 11:46:55 +01:00
|
|
|
{
|
|
|
|
/* Do not do anything. */
|
|
|
|
return(OK);
|
|
|
|
}
|
|
|
|
|
2009-10-01 16:00:27 +02:00
|
|
|
/*===========================================================================*
|
|
|
|
* no_sys *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int no_sys(void)
|
2009-10-01 16:00:27 +02:00
|
|
|
{
|
|
|
|
/* Somebody has used an illegal system call number */
|
|
|
|
return(EINVAL);
|
|
|
|
}
|
|
|
|
|