conditional include for Darwin related to statfs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11783 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot 2001-10-02 15:57:20 +00:00
parent cba5db5ff0
commit 8c03f242ce

View File

@ -29,7 +29,12 @@
#include "wx/stream.h"
#ifdef HAVE_STATFS
#include <sys/vfs.h>
# ifdef __DARWIN__
# include <sys/param.h>
# include <sys/mount.h>
# else
# include <sys/vfs.h>
# endif
#endif // HAVE_STATFS
#if wxUSE_GUI