home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 9.ddi / usr / include / sys / ustat.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-08  |  907 b   |  33 lines

  1. /*    Copyright (c) 1990 UNIX System Laboratories, Inc.    */
  2. /*    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 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/sys/ustat.h.sl 1.1 4.0 12/08/90 36770 AT&T-USL"
  11.  
  12. /* WARNING: The ustat system call will become obsolete in the
  13. ** next major release following SVR4. Application code should
  14. ** migrate to the replacement system call statvfs(2).
  15. */
  16.  
  17. #ifndef _SYS_USTAT_H
  18. #define _SYS_USTAT_H
  19.  
  20. #include <sys/types.h>
  21.  
  22.  
  23. struct  ustat {
  24.     daddr_t    f_tfree;    /* total free */
  25.     o_ino_t    f_tinode;    /* total inodes free */
  26.     char    f_fname[6];    /* filsys name */
  27.     char    f_fpack[6];    /* filsys pack name */
  28. };
  29.  
  30.  
  31.  
  32. #endif /* _SYS_USTAT_H */
  33.