summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Gohad <tushar.gohad@intel.com>2015-09-20 20:10:21 +0000
committerTushar Gohad <tushar.gohad@intel.com>2015-09-20 20:10:21 +0000
commit92f2824bc2485c1bde7479be5d00f57bc3c3deab (patch)
tree0de44c02cc55fbdd26318d68f38ee500450e18d1
parentf45db64106b25b5bde94dbad72134497aa5f395a (diff)
downloadpyeclib-92f2824bc2485c1bde7479be5d00f57bc3c3deab.tar.gz
Use explicit path to erasurecode.h
-rw-r--r--src/c/pyeclib_c/pyeclib_c.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c/pyeclib_c/pyeclib_c.c b/src/c/pyeclib_c/pyeclib_c.c
index 5250709..6af5b49 100644
--- a/src/c/pyeclib_c/pyeclib_c.c
+++ b/src/c/pyeclib_c/pyeclib_c.c
@@ -25,14 +25,14 @@
*/
#include <Python.h>
+#include <math.h>
+#include <bytesobject.h>
+#include <liberasurecode/erasurecode.h>
/* Compat layer for python <= 2.6 */
#include "capsulethunk.h"
-#include <erasurecode.h>
-#include <math.h>
#include <pyeclib_c.h>
-#include <bytesobject.h>
/* Python 3 compatibility macros */
#if PY_MAJOR_VERSION >= 3