From: Vinson Lee Date: Sat, 17 Jan 2015 00:14:51 +0000 (-0800) Subject: nir: s/malloc.h/stdlib.h/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=10a4f1e77aec66dfc1af4092ebd5be39383c3223;p=mesa.git nir: s/malloc.h/stdlib.h/ Fix build error on Mac OS X. CC nir_to_ssa.lo nir_to_ssa.c:29:10: fatal error: 'malloc.h' file not found ^ Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=88478 Signed-off-by: Vinson Lee --- diff --git a/src/glsl/nir/nir_to_ssa.c b/src/glsl/nir/nir_to_ssa.c index 03cce9266ff..3e7521163f6 100644 --- a/src/glsl/nir/nir_to_ssa.c +++ b/src/glsl/nir/nir_to_ssa.c @@ -26,7 +26,7 @@ */ #include "nir.h" -#include "malloc.h" +#include #include /*