mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
86c2982568
This refreshes the line numbers, removes any fuzz (which would make any future forward ports easier) and standardizes the patch/file headers (which makes them easier to read). Signed-off-by: Alexey Neyman <stilor@att.net>
31 lines
767 B
Diff
31 lines
767 B
Diff
---
|
|
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>
|
|
|