144630Smckusick /* 244630Smckusick * Copyright (c) 1990 Jan-Simon Pendry 344630Smckusick * Copyright (c) 1990 Imperial College of Science, Technology & Medicine 444630Smckusick * Copyright (c) 1990 The Regents of the University of California. 544630Smckusick * All rights reserved. 644630Smckusick * 744630Smckusick * This code is derived from software contributed to Berkeley by 844630Smckusick * Jan-Simon Pendry at Imperial College, London. 944630Smckusick * 1044630Smckusick * %sccs.include.redist.c% 1144630Smckusick * 12*49685Spendry * @(#)os-pyrOSx.h 5.3 (Berkeley) 05/12/91 13*49685Spendry * 14*49685Spendry * $Id: os-pyrOSx.h,v 5.2.1.2 91/05/07 22:19:53 jsp Alpha $ 15*49685Spendry * 16*49685Spendry * Pyramid OSx definitions for Amd (automounter) 17*49685Spendry * from Stefan Petri <petri@tubsibr.UUCP> 1844630Smckusick */ 1944630Smckusick 2044630Smckusick /* 2144630Smckusick * Does the compiler grok void * 2244630Smckusick */ 2344630Smckusick #define VOIDP 2444630Smckusick 2544630Smckusick /* 2644630Smckusick * Which version of the Sun RPC library we are using 2744630Smckusick * This is the implementation release number, not 2844630Smckusick * the protocol revision number. 2944630Smckusick */ 3044630Smckusick #define RPC_3 3144630Smckusick 3244630Smckusick /* 3344630Smckusick * Which version of the NFS interface are we using. 3444630Smckusick * This is the implementation release number, not 3544630Smckusick * the protocol revision number. 3644630Smckusick */ 3744630Smckusick #define NFS_3 3844630Smckusick 3944630Smckusick /* 4044630Smckusick * Byte ordering 4144630Smckusick */ 4247534Spendry #undef ARCH_ENDIAN 4344630Smckusick #define ARCH_ENDIAN "big" 4444630Smckusick 4544630Smckusick /* 4644630Smckusick * Name of filesystem types 4744630Smckusick */ 4844630Smckusick #define MOUNT_TYPE_UFS MOUNT_UFS 4944630Smckusick #define MOUNT_TYPE_NFS MOUNT_NFS 5044630Smckusick 5144630Smckusick #define strchr index 5244630Smckusick #define strrchr rindex 5344630Smckusick 5444630Smckusick #define hostname mnthostname 55