147534Spendry /* $Id: os-utx32.h,v 5.2.1.1 90/10/21 22:31:11 jsp Exp $ */ 244630Smckusick 344630Smckusick /* 444630Smckusick * Gould UTX/32 definitions for Amd (automounter) 544630Smckusick * 644630Smckusick * Copyright (c) 1989 Jan-Simon Pendry 744630Smckusick * Copyright (c) 1989 Imperial College of Science, Technology & Medicine 8*61789Sbostic * Copyright (c) 1989, 1993 9*61789Sbostic * The Regents of the University of California. All rights reserved. 1044630Smckusick * 1144630Smckusick * This code is derived from software contributed to Berkeley by 1244630Smckusick * Jan-Simon Pendry at Imperial College, London. 1344630Smckusick * 1444630Smckusick * %sccs.include.redist.c% 1544630Smckusick * 16*61789Sbostic * @(#)os-utx32.h 8.1 (Berkeley) 06/06/93 1744630Smckusick */ 1844630Smckusick 1944630Smckusick /* 2044630Smckusick * Does the compiler grok void * 2144630Smckusick */ 2244630Smckusick #ifdef __GNUC__ 2344630Smckusick #define VOIDP 2444630Smckusick #endif 2544630Smckusick 2644630Smckusick /* 2744630Smckusick * Which version of the Sun RPC library we are using 2844630Smckusick * This is the implementation release number, not 2944630Smckusick * the protocol revision number. 3044630Smckusick */ 3144630Smckusick #define RPC_3 3244630Smckusick 3344630Smckusick /* 3444630Smckusick * Which version of the NFS interface are we using. 3544630Smckusick * This is the implementation release number, not 3644630Smckusick * the protocol revision number. 3744630Smckusick */ 3844630Smckusick #define NFS_3 3944630Smckusick 4044630Smckusick /* 4144630Smckusick * Does this OS have NDBM support? 4244630Smckusick */ 4344630Smckusick #define OS_HAS_NDBM 4444630Smckusick 4544630Smckusick /* 4644630Smckusick * Byte ordering 4744630Smckusick */ 4844630Smckusick #undef ARCH_ENDIAN 4944630Smckusick #if defined(gould) || defined(GOULD_PN) 5044630Smckusick #define ARCH_ENDIAN "big" 5144630Smckusick #endif 5244630Smckusick 5344630Smckusick /* 5444630Smckusick * Name of filesystem types 5544630Smckusick */ 5644630Smckusick #define MOUNT_TYPE_NFS MOUNT_NFS 5744630Smckusick #define MOUNT_TYPE_UFS MOUNT_UFS 5844630Smckusick #undef MTAB_TYPE_UFS 5944630Smckusick #define MTAB_TYPE_UFS "4.3" 60