xref: /original-bsd/usr.sbin/amd/config/os-utx32.h (revision 8477994b)
1 /* $Id: os-utx32.h,v 5.2 90/06/23 22:21:00 jsp Rel $ */
2 
3 /*
4  * Gould UTX/32 definitions for Amd (automounter)
5  *
6  * Copyright (c) 1989 Jan-Simon Pendry
7  * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
8  * Copyright (c) 1989 The Regents of the University of California.
9  * All rights reserved.
10  *
11  * This code is derived from software contributed to Berkeley by
12  * Jan-Simon Pendry at Imperial College, London.
13  *
14  * %sccs.include.redist.c%
15  *
16  *	@(#)os-utx32.h	5.1 (Berkeley) 06/29/90
17  */
18 
19 /*
20  * Does the compiler grok void *
21  */
22 #ifdef __GNUC__
23 #define	VOIDP
24 #endif
25 
26 /*
27  * Which version of the Sun RPC library we are using
28  * This is the implementation release number, not
29  * the protocol revision number.
30  */
31 #define	RPC_3
32 
33 /*
34  * Which version of the NFS interface are we using.
35  * This is the implementation release number, not
36  * the protocol revision number.
37  */
38 #define	NFS_3
39 
40 /*
41  * Does this OS have NDBM support?
42  */
43 #define OS_HAS_NDBM
44 
45 /*
46  * Byte ordering
47  */
48 #undef ARCH_ENDIAN
49 #if defined(gould) || defined(GOULD_PN)
50 #define	ARCH_ENDIAN	"big"
51 #endif
52 
53 /*
54  * Name of filesystem types
55  */
56 #define	MOUNT_TYPE_NFS	MOUNT_NFS
57 #define	MOUNT_TYPE_UFS	MOUNT_UFS
58 #undef MTAB_TYPE_UFS
59 #define	MTAB_TYPE_UFS	"4.3"
60