mpack: Fix conflicting malloc definition
authorFlorian Fainelli <redacted>
Sun, 2 Apr 2017 01:04:03 +0000 (18:04 -0700)
committerFlorian Fainelli <redacted>
Sun, 2 Apr 2017 01:04:47 +0000 (18:04 -0700)
Use stdlib.h for malloc(), getenv() and realloc(). Fixes the following
build failure:

unixos.c:42:14: error: conflicting types for 'malloc'
 extern char *malloc();
              ^
Makefile:168: recipe for target 'unixos.o' failed
make[3]: *** [unixos.o] Error 1

Signed-off-by: Florian Fainelli <redacted>
utils/mpack/patches/001-use-stdlib.patch [new file with mode: 0644]

diff --git a/utils/mpack/patches/001-use-stdlib.patch b/utils/mpack/patches/001-use-stdlib.patch
new file mode 100644 (file)
index 0000000..c5d10df
--- /dev/null
@@ -0,0 +1,34 @@
+Index: mpack-1.6/unixos.c
+===================================================================
+--- mpack-1.6.orig/unixos.c
++++ mpack-1.6/unixos.c
+@@ -25,6 +25,7 @@
+ #include <stdio.h>
+ #include <ctype.h>
+ #include <string.h>
++#include <stdlib.h>
+ #include <errno.h>
+ #include <sys/types.h>
+ #include <sys/param.h>
+@@ -39,8 +40,6 @@
+ #endif
+ extern int errno;
+-extern char *malloc();
+-extern char *getenv();
+ int overwrite_files = 0;
+ int didchat;
+Index: mpack-1.6/xmalloc.c
+===================================================================
+--- mpack-1.6.orig/xmalloc.c
++++ mpack-1.6/xmalloc.c
+@@ -24,7 +24,7 @@
+  */
+ #include <stdio.h>
+ #include <string.h>
+-extern char *malloc(), *realloc();
++#include <stdlib.h>
+ char *xmalloc (int size)
+ {
git clone https://git.99rst.org/PROJECT