summaryrefslogtreecommitdiff
path: root/packages/mingw-w64/v9.0.0/0000-mingw64-malloc.patch
blob: 8e0add1f064eb2284c5aa58fbc5faf51cabe324a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
 mingw-w64-tools/genidl/src/genidl_cfg.h     |    2 ++
 mingw-w64-tools/genidl/src/genidl_typinfo.c |    3 +++
 2 files changed, 5 insertions(+)

--- a/mingw-w64-tools/genidl/src/genidl_cfg.h
+++ b/mingw-w64-tools/genidl/src/genidl_cfg.h
@@ -26,7 +26,9 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#if defined(HAVE_MALLOC_H)
 #include <malloc.h>
+#endif
 #include <memory.h>
 #include <stdarg.h>
 #include <stdint.h>
--- a/mingw-w64-tools/genidl/src/genidl_typinfo.c
+++ b/mingw-w64-tools/genidl/src/genidl_typinfo.c
@@ -21,7 +21,10 @@
 #include "genidl_cfg.h"
 #include "genidl_typeinfo.h"
 #include "genidl_typinfo.h"
+#if defined(HAVE_MALLOC_H)
 #include <malloc.h>
+#endif
+#include <stdlib.h>
 #include <string.h>
 #include <memory.h>