PERFORCE change 95115 for review

John Birrell jb at FreeBSD.org
Wed Apr 12 23:36:24 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=95115

Change 95115 by jb at jb_freebsd2 on 2006/04/12 23:36:18

	Solaris still uses malloc.h. We use stdlib.h.

Affected files ...

.. //depot/projects/dtrace/src/contrib/opensolaris/cmd/sgs/libelf/common/update.c#2 edit

Differences ...

==== //depot/projects/dtrace/src/contrib/opensolaris/cmd/sgs/libelf/common/update.c#2 (text) ====

@@ -36,7 +36,11 @@
 
 #include "syn.h"
 #include <memory.h>
+#if	defined(sun)
 #include <malloc.h>
+#else
+#include <stdlib.h>
+#endif
 #include <limits.h>
 
 #include <sgs.h>


More information about the p4-projects mailing list