44 lines
882 B
C
44 lines
882 B
C
#ifndef _H_USTAT
|
|
#define _H_USTAT
|
|
|
|
/* @(#)86 1.5.1.1 src/bos/usr/include/ustat.h, cmdfs, bos411, 9428A410j 12/7/93 19:29:40 */
|
|
/*
|
|
* SYSLFS: Logical Filesystem
|
|
*
|
|
* FUNCTIONS: ustat header
|
|
*
|
|
* ORIGINS: 27
|
|
*
|
|
* (C) COPYRIGHT International Business Machines Corp. 1985, 1993
|
|
* All Rights Reserved
|
|
* Licensed Materials - Property of IBM
|
|
*
|
|
* US Government Users Restricted Rights - Use, duplication or
|
|
* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
*/
|
|
|
|
#ifdef DFS
|
|
|
|
#include "sys/ustat.h"
|
|
|
|
#else
|
|
|
|
struct ustat
|
|
{
|
|
daddr_t f_tfree; /* total free */
|
|
ino_t f_tinode; /* total inodes free */
|
|
char f_fname[6]; /* filsys name */
|
|
char f_fpack[6]; /* filsys pack name */
|
|
};
|
|
|
|
#ifndef _KERNEL
|
|
#ifdef _NO_PROTO
|
|
extern int ustat();
|
|
#else
|
|
extern int ustat(dev_t, struct ustat *);
|
|
#endif /* _NO_PROTO */
|
|
#endif /* _KERNEL */
|
|
|
|
#endif /* DFS */
|
|
#endif /* _H_USTAT */
|