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 <vlee@freedesktop.org>
This commit is contained in:
Vinson Lee 2015-01-16 16:14:51 -08:00
parent a9f657ded1
commit 10a4f1e77a

View file

@ -26,7 +26,7 @@
*/
#include "nir.h"
#include "malloc.h"
#include <stdlib.h>
#include <unistd.h>
/*