You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2015/07/15 03:03:05 UTC

lucy git commit: Add missing errno.h include.

Repository: lucy
Updated Branches:
  refs/heads/master 66126d7d7 -> d50744eed


Add missing errno.h include.


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/d50744ee
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/d50744ee
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/d50744ee

Branch: refs/heads/master
Commit: d50744eed649a66a130001862b757ebf3d5d73da
Parents: 66126d7
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Tue Jul 14 14:32:12 2015 -0700
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Tue Jul 14 14:32:12 2015 -0700

----------------------------------------------------------------------
 core/Lucy/Test/Store/TestFSFolder.c | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/d50744ee/core/Lucy/Test/Store/TestFSFolder.c
----------------------------------------------------------------------
diff --git a/core/Lucy/Test/Store/TestFSFolder.c b/core/Lucy/Test/Store/TestFSFolder.c
index 23ee684..d2fbbef 100644
--- a/core/Lucy/Test/Store/TestFSFolder.c
+++ b/core/Lucy/Test/Store/TestFSFolder.c
@@ -34,6 +34,10 @@
   #include <sys/stat.h>
 #endif
 
+#ifdef CHY_HAS_ERRNO_H
+  #include "errno.h"
+#endif
+
 #include "Clownfish/TestHarness/TestBatchRunner.h"
 #include "Lucy/Test.h"
 #include "Lucy/Test/Store/TestFSFolder.h"