From d1b4ad6aca649d0334c922a52d10ee08faa25db4 Mon Sep 17 00:00:00 2001 From: Hans van den Bogert Date: Mon, 1 Dec 2014 14:09:13 +0100 Subject: [PATCH] Added cstdlib include the atoi and other functions were not transitively included under clang/llvm3.5 --- examples/mandelbrot/mandelbrot.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/mandelbrot/mandelbrot.cpp b/examples/mandelbrot/mandelbrot.cpp index fafc00d0..44ed508b 100644 --- a/examples/mandelbrot/mandelbrot.cpp +++ b/examples/mandelbrot/mandelbrot.cpp @@ -43,6 +43,7 @@ #include "../timing.h" #include "mandelbrot_ispc.h" #include +#include using namespace ispc; extern void mandelbrot_serial(float x0, float y0, float x1, float y1,