context_funcs.cpp does not build on BSD/OS because no definition for

STATFS is found. This trivial patch adds it back. It sure looks like a
pasto.
Thanks to Bert Driehuis <driehuis@playbeing.org>.


git-svn-id: svn://10.0.0.236/trunk@9334 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ramiro%netscape.com
1998-09-04 13:44:34 +00:00
parent 70889d7b15
commit 3a33b18b34

View File

@@ -76,6 +76,7 @@ extern "C" int statfs(char *, struct statfs *);
#define STATFS statfs
#elif defined(BSDI)
#include <sys/mount.h> /* for statfs() */
#define STATFS statfs
#elif defined(NETBSD)
#include <sys/mount.h> /* for statfs() */
#define STATFS statfs