1 /* 2 * Copyright (c) 1990 Jan-Simon Pendry 3 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine 4 * Copyright (c) 1990 The Regents of the University of California. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * Jan-Simon Pendry at Imperial College, London. 9 * 10 * %sccs.include.redist.c% 11 * 12 * @(#)os-fpx4.h 5.3 (Berkeley) 05/12/91 13 * 14 * $Id: os-fpx4.h,v 5.2.1.2 91/05/07 22:19:40 jsp Alpha $ 15 * 16 * Celerity FPX 4.1/2 definitions for Amd (automounter) 17 * from Stephen Pope <scp@grizzly.acl.lanl.gov> 18 */ 19 20 /* 21 * FPX wants to include sys headers multiple times 22 */ 23 #define INCLUDE_HEADERS 24 25 /* 26 * FPX sys/mount.h includes sys/nfs.h; prevent this 27 */ 28 #define INCLUDED_nfs 29 30 /* 31 * FPX doesn't define NMOUNT anywhere 32 */ 33 #define NMOUNT 40 34 35 /* 36 * Does the compiler grok void * 37 */ 38 /* #define VOIDP */ 39 40 /* 41 * Which version of the Sun RPC library we are using 42 * This is the implementation release number, not 43 * the protocol revision number. 44 */ 45 #define RPC_3 46 47 /* 48 * Which version of the NFS interface are we using. 49 * This is the implementation release number, not 50 * the protocol revision number. 51 */ 52 #define NFS_3 53 54 /* 55 * Byte ordering 56 */ 57 #undef ARCH_ENDIAN 58 #define ARCH_ENDIAN "big" 59 60 /* 61 * Name of filesystem types 62 */ 63 #define MOUNT_TYPE_NFS MOUNT_NFS 64 #define MOUNT_TYPE_UFS MOUNT_UFS 65