From 54975c1f5415f286b79ff479d8adb0cf3305c221 Mon Sep 17 00:00:00 2001
From: David Hendriks <davidhendriks93@gmail.com>
Date: Wed, 12 Aug 2020 22:17:37 +0100
Subject: [PATCH] removing line of API in setup.py, and extra includes in the
 header file

---
 include/binary_c_python.h | 4 ++--
 setup.py                  | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/binary_c_python.h b/include/binary_c_python.h
index f8f7ab8d0..e3f09ab12 100644
--- a/include/binary_c_python.h
+++ b/include/binary_c_python.h
@@ -6,8 +6,8 @@
  * Include binary_C's API
  */
 #include "binary_c_API.h"
-#include "binary_c.h"
-#include "binary_c_API_prototypes.h"
+// #include "binary_c.h"
+// #include "binary_c_API_prototypes.h"
 
 /* Binary_c's python API prototypes */
 int run_system(char * argstring,
diff --git a/setup.py b/setup.py
index c7c718cee..5bbc5775f 100644
--- a/setup.py
+++ b/setup.py
@@ -110,9 +110,9 @@ for x in DEFINES:
         if y:
             BINARY_C_DEFINE_MACROS.extend([(y.group(1), None)])
 
-# add API header file
-API_h = os.path.join(BINARY_C_DIR, "src", "API", "binary_c_API.h")
-BINARY_C_DEFINE_MACROS.extend([("BINARY_C_API_H", API_h)])
+# # add API header file
+# API_h = os.path.join(BINARY_C_DIR, "src", "API", "binary_c_API.h")
+# BINARY_C_DEFINE_MACROS.extend([("BINARY_C_API_H", API_h)])
 
 ############################################################
 # Setting all directories and LIBRARIES to their final values
-- 
GitLab