diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-02 21:19:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-07-02 21:19:34 +0000 |
commit | be0a1ac3793cd197747bb916f03991f0dd5eccae (patch) | |
tree | d126eb4e863ca2baf200e61622c410f3861f3900 /bin/df/df.c | |
parent | c7d032fc4ac7d7924b20e1fea418272346d8c78c (diff) |
missing protos
Diffstat (limited to 'bin/df/df.c')
-rw-r--r-- | bin/df/df.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/df/df.c b/bin/df/df.c index 1927e7c2163..339f7ed80d9 100644 --- a/bin/df/df.c +++ b/bin/df/df.c @@ -1,4 +1,4 @@ -/* $OpenBSD: df.c,v 1.35 2003/06/02 23:32:07 millert Exp $ */ +/* $OpenBSD: df.c,v 1.36 2003/07/02 21:19:33 deraadt Exp $ */ /* $NetBSD: df.c,v 1.21.2.1 1995/11/01 00:06:11 jtc Exp $ */ /* @@ -45,7 +45,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)df.c 8.7 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: df.c,v 1.35 2003/06/02 23:32:07 millert Exp $"; +static char rcsid[] = "$OpenBSD: df.c,v 1.36 2003/07/02 21:19:33 deraadt Exp $"; #endif #endif /* not lint */ @@ -74,6 +74,8 @@ void prtstat(struct statfs *, int, int, int); void posixprint(struct statfs *, long, int); int bread(int, off_t, void *, int); void usage(void); +void prthumanval(long long); +void prthuman(struct statfs *sfsp, long); int raw_df(char *, struct statfs *); extern int ffs_df(int, char *, struct statfs *); |