mkfs: drop support for running on DOS
[minix.git] / servers / iso9660fs / utility.c
blobd62b75eb797ba2f6efb630878668ab4b64837808
1 #include "inc.h"
2 #include <sys/stat.h>
3 #include <string.h>
4 #include <minix/com.h>
5 #include <minix/callnr.h>
6 #include <minix/vfsif.h>
8 /*===========================================================================*
9 * do_noop *
10 *===========================================================================*/
11 int do_noop(void)
13 /* Do not do anything. */
14 return(OK);
17 /*===========================================================================*
18 * no_sys *
19 *===========================================================================*/
20 int no_sys(void)
22 /* Somebody has used an illegal system call number */
23 return(EINVAL);