aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/statvfs.h
Commit message (Collapse)AuthorAgeFilesLines
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-1/+1
| | | | Notes: svn path=/head/; revision=139825
* o Merge <machine/ansi.h> and <machine/types.h> into a new headerMike Barcroft2002-08-211-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | called <machine/_types.h>. o <machine/ansi.h> will continue to live so it can define MD clock macros, which are only MD because of gratuitous differences between architectures. o Change all headers to make use of this. This mainly involves changing: #ifdef _BSD_FOO_T_ typedef _BSD_FOO_T_ foo_t; #undef _BSD_FOO_T_ #endif to: #ifndef _FOO_T_DECLARED typedef __foo_t foo_t; #define _FOO_T_DECLARED #endif Concept by: bde Reviewed by: jake, obrien Notes: svn path=/head/; revision=102227
* Fix two syntax errors and add declarations of statvfs() and fstatvfs().Garrett Wollman2002-06-161-2/+6
| | | | Notes: svn path=/head/; revision=98307
* Implement the <sys/statvfs.h> header. Related changes to <sys/types.h>Garrett Wollman2002-06-141-0/+77
are still awaiting a worldstone. Functions and their declarations to come later. Notes: svn path=/head/; revision=98232