No empty .Rs/.Re
[netbsd-mini2440.git] / external / ibm-public / postfix / dist / src / util / fsspace.h
blobfffc1aa4b3598e2a6552678af0379aade76f8efb
1 /* $NetBSD$ */
3 #ifndef _FSSPACE_H_INCLUDED_
4 #define _FSSPACE_H_INCLUDED_
6 /*++
7 /* NAME
8 /* fsspace 3h
9 /* SUMMARY
10 /* determine available file system space
11 /* SYNOPSIS
12 /* #include <fsspace.h>
13 /* DESCRIPTION
14 /* .nf
16 /* External interface. */
17 struct fsspace {
18 unsigned long block_size; /* block size */
19 unsigned long block_free; /* free space */
22 extern void fsspace(const char *, struct fsspace *);
24 /* LICENSE
25 /* .ad
26 /* .fi
27 /* The Secure Mailer license must be distributed with this software.
28 /* AUTHOR(S)
29 /* Wietse Venema
30 /* IBM T.J. Watson Research
31 /* P.O. Box 704
32 /* Yorktown Heights, NY 10598, USA
33 /*--*/
35 #endif