diff options
author | Yoshio MITA <mita@FreeBSD.org> | 2002-01-05 00:48:22 +0000 |
---|---|---|
committer | Yoshio MITA <mita@FreeBSD.org> | 2002-01-05 00:48:22 +0000 |
commit | 04dd2cc9bfbc9b7b3d4c1ee2852ec912d9f4d0ad (patch) | |
tree | adec0ea13d48802c6079b63651322c7a84e72e75 /misc | |
parent | 7d4beaaf36c5fefc78aa8a3971a0bde9a70ba92a (diff) | |
download | ports-04dd2cc9bfbc9b7b3d4c1ee2852ec912d9f4d0ad.tar.gz ports-04dd2cc9bfbc9b7b3d4c1ee2852ec912d9f4d0ad.zip |
use stdlib.h instead of malloc.h For compatibility with 5-current.
This change does not affect 4-stable ports.
PR: ports/32071
Submitted by: also from Nicolas Jombart
Notes
Notes:
svn path=/head/; revision=52583
Diffstat (limited to 'misc')
-rw-r--r-- | misc/magicpoint/files/patch-aa | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/magicpoint/files/patch-aa b/misc/magicpoint/files/patch-aa new file mode 100644 index 000000000000..cc947ab62f1e --- /dev/null +++ b/misc/magicpoint/files/patch-aa @@ -0,0 +1,11 @@ +--- image/new.c.orig Sun Dec 30 18:08:41 2001 ++++ image/new.c Sun Dec 30 18:08:58 2001 +@@ -11,7 +11,7 @@ + #include "copyright.h" + #include "image.h" + +-#include <malloc.h> ++#include <stdlib.h> + + extern int _Xdebug; + extern void memoryExhausted(void); |