xref: /csrg-svn/usr.sbin/amd/config/os-next.h (revision 47514)
1*47514Spendry /* $Id: os-next.h,v 5.2.1.1 90/10/21 22:31:00 jsp Exp $ */
2*47514Spendry 
3*47514Spendry /*
4*47514Spendry  * NeXT OS definitions for Amd (automounter)
5*47514Spendry  *
6*47514Spendry  * By Bill Trost, Reed College
7*47514Spendry  * trost%reed@cse.ogi.edu,
8*47514Spendry  *
9*47514Spendry  * Derived from the Sun 3.2 definitions for Amd (os-sos3.h).
10*47514Spendry  *
11*47514Spendry  * Copyright (c) 1990 Jan-Simon Pendry
12*47514Spendry  * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
13*47514Spendry  * Copyright (c) 1990 The Regents of the University of California.
14*47514Spendry  * All rights reserved.
15*47514Spendry  *
16*47514Spendry  * This code is derived from software contributed to Berkeley by
17*47514Spendry  * Jan-Simon Pendry at Imperial College, London.
18*47514Spendry  *
19*47514Spendry  * Redistribution and use in source and binary forms are permitted
20*47514Spendry  * provided that the above copyright notice and this paragraph are
21*47514Spendry  * duplicated in all such forms and that any documentation,
22*47514Spendry  * advertising materials, and other materials related to such
23*47514Spendry  * distribution and use acknowledge that the software was developed
24*47514Spendry  * by Imperial College of Science, Technology and Medicine, London, UK.
25*47514Spendry  * The names of the College and University may not be used to endorse
26*47514Spendry  * or promote products derived from this software without specific
27*47514Spendry  * prior written permission.
28*47514Spendry  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
29*47514Spendry  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
30*47514Spendry  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
31*47514Spendry  *
32*47514Spendry  *	@(#)os-next.h	5.1 (Berkeley) 03/17/91
33*47514Spendry  */
34*47514Spendry 
35*47514Spendry /*
36*47514Spendry  * Does the compiler grok void *	(NeXT uses gcc)
37*47514Spendry  */
38*47514Spendry #define VOIDP
39*47514Spendry 
40*47514Spendry /*
41*47514Spendry  * Which version of the Sun RPC library we are using
42*47514Spendry  * This is the implementation release number, not
43*47514Spendry  * the protocol revision number.
44*47514Spendry  */
45*47514Spendry #define RPC_3
46*47514Spendry 
47*47514Spendry /*
48*47514Spendry  * Which version of the NFS interface are we using.
49*47514Spendry  * This is the implementation release number, not
50*47514Spendry  * the protocol revision number.
51*47514Spendry  */
52*47514Spendry #define NFS_3
53*47514Spendry 
54*47514Spendry /*
55*47514Spendry  * Name of filesystem types
56*47514Spendry  */
57*47514Spendry #define MOUNT_TYPE_UFS	MOUNT_UFS
58*47514Spendry #define MOUNT_TYPE_NFS	MOUNT_NFS
59*47514Spendry #undef MTAB_TYPE_UFS
60*47514Spendry #define MTAB_TYPE_UFS	"4.3"
61*47514Spendry 
62*47514Spendry /*
63*47514Spendry  * Where to get NFS definitions
64*47514Spendry  */
65*47514Spendry #define NFS_HDR "misc-next.h"
66