Fix C imports in C++ code

This commit is contained in:
2020-04-02 14:09:52 +02:00
parent 4ef21c652c
commit 2c1ae79e8b
2 changed files with 10 additions and 3 deletions
+6 -2
View File
@@ -11,8 +11,12 @@
#include "bitshuffle.h"
#include "bitshuffle_core.h"
#include "bitshuffle_internals.h"
#include "lz4.h"
extern "C" {
#include "bitshuffle_internals.h"
#include "lz4.h"
}
#include <stdio.h>
#include <string.h>
+4 -1
View File
@@ -10,7 +10,10 @@
*/
#include "bitshuffle_core.h"
#include "bitshuffle_internals.h"
extern "C" {
#include "bitshuffle_internals.h"
}
#include <stdio.h>
#include <string.h>