blob: 5cb04d5e0934a091d794e3c982642ea0b877fc99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* $NetBSD: sysctl.h,v 1.1 1996/12/17 19:26:51 gwr Exp $ */
/*
* CTL_MACHDEP definitions. (Common to all m68k ports.)
* This should be included by each m68k port's cpu.h so
* /usr/sbin/sysctl can be shared on all of them.
*/
#ifndef CTL_MACHDEP_NAMES
#define CPU_CONSDEV 1 /* dev_t: console terminal device */
#define CPU_MAXID 2 /* number of valid machdep ids */
#define CTL_MACHDEP_NAMES { \
{ 0, 0 }, \
{ "console_device", CTLTYPE_STRUCT }, \
}
#endif /* CTL_MACHDEP_NAMES */
|