minix/servers/iso9660fs/utility.c

26 lines
658 B
C
Raw Normal View History

#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);
}
/*===========================================================================*
* no_sys *
*===========================================================================*/
2012-03-25 20:25:53 +02:00
int no_sys(void)
{
/* Somebody has used an illegal system call number */
return(EINVAL);
}