You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@corinthia.apache.org by pm...@apache.org on 2015/02/26 20:38:13 UTC

incubator-corinthia git commit: Add a couple of missing #includes for xmalloc

Repository: incubator-corinthia
Updated Branches:
  refs/heads/master 70c986172 -> 898122628


Add a couple of missing #includes for xmalloc


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

Branch: refs/heads/master
Commit: 8981226289610e0bced4960ab2b2e5211190f806
Parents: 70c9861
Author: Peter Kelly <pe...@uxproductivity.com>
Authored: Fri Feb 27 02:32:43 2015 +0700
Committer: Peter Kelly <pe...@uxproductivity.com>
Committed: Fri Feb 27 02:32:54 2015 +0700

----------------------------------------------------------------------
 DocFormats/core/src/lib/DFAllocator.c | 1 +
 DocFormats/core/src/lib/DFArray.c     | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/89812262/DocFormats/core/src/lib/DFAllocator.c
----------------------------------------------------------------------
diff --git a/DocFormats/core/src/lib/DFAllocator.c b/DocFormats/core/src/lib/DFAllocator.c
index 27eca5d..025ad00 100644
--- a/DocFormats/core/src/lib/DFAllocator.c
+++ b/DocFormats/core/src/lib/DFAllocator.c
@@ -15,6 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
+#include "DFPlatform.h"
 #include "DFAllocator.h"
 #include "DFCommon.h"
 #include <assert.h>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/89812262/DocFormats/core/src/lib/DFArray.c
----------------------------------------------------------------------
diff --git a/DocFormats/core/src/lib/DFArray.c b/DocFormats/core/src/lib/DFArray.c
index 306a495..86780d5 100644
--- a/DocFormats/core/src/lib/DFArray.c
+++ b/DocFormats/core/src/lib/DFArray.c
@@ -15,6 +15,7 @@
 // specific language governing permissions and limitations
 // under the License.
 
+#include "DFPlatform.h"
 #include "DFArray.h"
 #include "DFCommon.h"
 #include <assert.h>