home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume21 / amd / part01 / os-utx32.h < prev    next >
C/C++ Source or Header  |  1990-04-10  |  2KB  |  71 lines

  1. /* $Id: os-utx32.h,v 5.1.1.1 89/11/28 18:05:09 jsp Exp Locker: jsp $ */
  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.  * Redistribution and use in source and binary forms are permitted
  15.  * provided that the above copyright notice and this paragraph are
  16.  * duplicated in all such forms and that any documentation,
  17.  * advertising materials, and other materials related to such
  18.  * distribution and use acknowledge that the software was developed
  19.  * by Imperial College of Science, Technology and Medicine, London, UK.
  20.  * The names of the College and University may not be used to endorse
  21.  * or promote products derived from this software without specific
  22.  * prior written permission.
  23.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  24.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  25.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  26.  *
  27.  *    %W% (Berkeley) %G%
  28.  */
  29.  
  30. /*
  31.  * Does the compiler grok void *
  32.  */
  33. #ifdef __GNUC__
  34. #define    VOIDP
  35. #endif
  36.  
  37. /*
  38.  * Which version of the Sun RPC library we are using
  39.  * This is the implementation release number, not
  40.  * the protocol revision number.
  41.  */
  42. #define    RPC_3
  43.  
  44. /*
  45.  * Which version of the NFS interface are we using.
  46.  * This is the implementation release number, not
  47.  * the protocol revision number.
  48.  */
  49. #define    NFS_3
  50.  
  51. /*
  52.  * Does this OS have NDBM support?
  53.  */
  54. #define OS_HAS_NDBM
  55.  
  56. /*
  57.  * Byte ordering
  58.  */
  59. #undef ARCH_ENDIAN
  60. #if defined(gould) || defined(GOULD_PN)
  61. #define    ARCH_ENDIAN    "big"
  62. #endif
  63.  
  64. /*
  65.  * Name of filesystem types
  66.  */
  67. #define    MOUNT_TYPE_NFS    MOUNT_NFS
  68. #define    MOUNT_TYPE_UFS    MOUNT_UFS
  69. #undef MTAB_TYPE_UFS
  70. #define    MTAB_TYPE_UFS    "4.3"
  71.