minix/servers/iso9660fs/utility.c
David van Moolenbroek f29ba928cc isofs: unbreak lseek
2011-11-22 11:46:55 +01:00

26 lines
672 B
C

#include "inc.h"
#include <sys/stat.h>
#include <string.h>
#include <minix/com.h>
#include <minix/callnr.h>
#include <minix/vfsif.h>
/*===========================================================================*
* do_noop *
*===========================================================================*/
PUBLIC int do_noop(void)
{
/* Do not do anything. */
return(OK);
}
/*===========================================================================*
* no_sys *
*===========================================================================*/
PUBLIC int no_sys(void)
{
/* Somebody has used an illegal system call number */
return(EINVAL);
}