home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 38.ddi / root.3 / usr / include / mnttab.h / mnttab.h
Encoding:
C/C++ Source or Header  |  1990-10-02  |  755 b   |  34 lines

  1. /*    Copyright (c) 1990 UNIX System Laboratories, Inc.    */
  2. /*    Copyright (c) 1988 AT&T    */
  3. /*      All Rights Reserved      */
  4.  
  5. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF         */
  6. /*    UNIX System Laboratories, Inc.                         */
  7. /*    The copyright notice above does not evidence any       */
  8. /*    actual or intended publication of such source code.    */
  9.  
  10. #ident    "@(#)/usr/include/mnttab.h.sl 1.2 5.0 08/27/90 36407 AT&T-USO 1.3"
  11.  
  12. #ifndef _MNTTAB_H
  13. #define _MNTTAB_H
  14.  
  15. #define    NMOUNT    100
  16.  
  17. /* from time.h */
  18. #ifndef _TIME_T
  19. #define _TIME_T
  20. typedef long    time_t;
  21. #endif
  22.  
  23. /* Format of the /etc/mnttab file which is set by the mount(1m)
  24.  * command
  25.  */
  26. struct mnttab {
  27.     char    mt_dev[32],
  28.         mt_filsys[32];
  29.         short    mt_ro_flg;
  30.     time_t    mt_time;
  31. };
  32.  
  33. #endif     /* _MNTTAB_H */
  34.