xref: /original-bsd/sys/stand/dev.c (revision 3705696b)
1 /*-
2  * Copyright (c) 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)dev.c	8.1 (Berkeley) 06/11/93
8  */
9 
10 #include <stand/stand.h>
11 
12 /* ARGSUSED */
13 nodev(io)
14 	struct iob *io;
15 {
16 	return (ENXIO);
17 }
18 
19 /* ARGSUSED */
20 noioctl(io, cmd, arg)
21 	struct iob *io;
22 	int cmd;
23 	caddr_t arg;
24 {
25 	return (EINVAL);
26 }
27