blob: 038c22ee9af11b9091a5091f720ce2da5e3cbdb2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- QuantisExtensions/QuantisExtractor_C.c.orig 2012-09-24 15:42:36.000000000 +0200
+++ QuantisExtensions/QuantisExtractor_C.c 2012-09-24 15:42:56.000000000 +0200
@@ -53,7 +53,11 @@
#include "../Quantis/Conversion.h"
#include <stdio.h>
#include <math.h>
-#include <malloc.h>
+#ifdef HAVE_MALLOC_H
+# include <malloc.h>
+#else
+# include <stdlib.h>
+#endif
/* Size of the buffer used for QuantisReadXXX methods */
|