PATCH: tools/winedump/lnk.c and malloc.h

Gerald Pfeifer gerald at pfeifer.com
Thu Feb 17 23:49:34 CST 2005


We've had a couple of those over the years; this is the trivial and
portable fix.

Gerald

ChangeLog:
Use stdlib.h instead of non-standard malloc.h
Index: lnk.c
===================================================================
RCS file: /home/wine/wine/tools/winedump/lnk.c,v
retrieving revision 1.1
diff -u -3 -p -r1.1 lnk.c
--- lnk.c	17 Feb 2005 11:51:23 -0000	1.1
+++ lnk.c	18 Feb 2005 05:47:39 -0000
@@ -19,7 +19,7 @@
  */
 
 #include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/stat.h>



More information about the wine-patches mailing list