xref: /original-bsd/usr.bin/vmstat.sparc/names.c (revision c3e32dec)
1 /*-
2  * Copyright (c) 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)names.c	8.1 (Berkeley) 06/06/93
8  */
9 
10 #ifdef hp300
11 char *defdrives[] = { "sd0", "sd1", "sd2", "rd0", "rd1", "rd2", 0 };
12 #define	DONE
13 #endif
14 
15 #ifdef tahoe
16 char *defdrives[] = { "dk0", "dk1", "dk2", 0 };
17 #define	DONE
18 #endif
19 
20 #ifdef vax
21 char *defdrives[] = { "hp0", "hp1", "hp2", 0 };
22 #define	DONE
23 #endif
24 
25 #ifndef DONE
26 char *defdrives[] = { 0 };
27 #endif
28