projects
/
apt.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
use c++11 algorithms to avoid strange compiler warnings
[apt.git]
/
buildlib
/
statvfs.h.in
This page requires JavaScript to run. Use
this page
instead.
0 / 13 ( 0%)
Commit
Line
Data
1
/* Compatibility for systems with out Single Unix Spec statvfs */
2
#include <config.h>
3
4
#ifdef HAVE_VFS_H
5
#include <sys/vfs.h>
6
#endif
7
8
#ifdef HAVE_MOUNT_H
9
#include <sys/param.h>
10
#include <sys/mount.h>
11
#endif
12
13
#define statvfs statfs