summaryrefslogtreecommitdiff
path: root/Source/Core/Common/FileUtil.cpp
diff options
context:
space:
mode:
authorJeffrey Pfau <jeffrey@endrift.com>2015-06-10 22:15:11 -0700
committerJeffrey Pfau <jeffrey@endrift.com>2015-07-11 23:09:11 -0700
commit2eb553fdb72d5605c3f17324580859127a93d674 (patch)
tree26fa3325f8b5b91cf93bffe397166fcb93d1a94f /Source/Core/Common/FileUtil.cpp
parentcc79334faf14c8525d828eaafa99ed6432842de4 (diff)
Fix FreeBSD build
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
-rw-r--r--Source/Core/Common/FileUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp
index 925e3f1ed3..4709c011b2 100644
--- a/Source/Core/Common/FileUtil.cpp
+++ b/Source/Core/Common/FileUtil.cpp
@@ -42,7 +42,7 @@
#define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
#endif
-#ifdef BSD4_4
+#if defined BSD4_4 || defined __FreeBSD__
#define stat64 stat
#define fstat64 fstat
#endif