home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / bsd / mtab.h < prev    next >
C/C++ Source or Header  |  1990-01-22  |  428b  |  17 lines

  1. /*
  2.  * Copyright (c) 1980 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)mtab.h    5.1 (Berkeley) 5/30/85
  7.  */
  8.  
  9. /*
  10.  * Mounted device accounting file.
  11.  */
  12. struct mtab {
  13.     char    m_path[32];        /* mounted on pathname */
  14.     char    m_dname[32];        /* block device pathname */
  15.     char    m_type[4];        /* read-only, quotas */
  16. };
  17.