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