1
0
Fork 0

(svn r2356) Make check if statvfs() is availible a bit more sensible

release/0.4.5
tron 2005-05-21 19:42:34 +00:00
parent 54bc10515f
commit bff8dfea1c
1 changed files with 1 additions and 1 deletions

2
unix.c
View File

@ -12,7 +12,7 @@
#include <pwd.h>
#include <signal.h>
#if ((defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__linux__)) && !defined(__dietlibc__)
#if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 200112L) || defined(__GLIBC__)
#define HAS_STATVFS
#endif