From 8116cad07e69e02b9609dbf5060a72f75a1ac4f7 Mon Sep 17 00:00:00 2001 From: "jim_nance%yahoo.com" Date: Wed, 5 Apr 2000 22:37:01 +0000 Subject: [PATCH] Fix for bug 34543. Compile problem under Tru64 Unix. a=leaf. This is #ifdefed for Tru64 Unix, but if it causes bustage and I am not on IRC, you can get me at 919.859.3885 git-svn-id: svn://10.0.0.236/trunk@65382 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/io/nsLocalFileUnix.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mozilla/xpcom/io/nsLocalFileUnix.cpp b/mozilla/xpcom/io/nsLocalFileUnix.cpp index b42a50e37ee..5df926d029c 100644 --- a/mozilla/xpcom/io/nsLocalFileUnix.cpp +++ b/mozilla/xpcom/io/nsLocalFileUnix.cpp @@ -56,6 +56,9 @@ // we need these for statfs() #ifdef HAVE_SYS_STATVFS_H +#if defined(__osf__) && defined(__DECCXX) + extern "C" int statvfs(const char *, struct statvfs *); +#endif #include #endif