From 79cf1e13a7afe1f2bf9e3a0010e9caca776cf347 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Sun, 25 Oct 2020 21:33:08 +0100 Subject: [PATCH] Adjusted to recent change in time.h --- samples/mandelbrot.c | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/mandelbrot.c b/samples/mandelbrot.c index 595bcfbbb..519f3d823 100644 --- a/samples/mandelbrot.c +++ b/samples/mandelbrot.c @@ -31,6 +31,7 @@ /* Workaround missing clock stuff */ #ifdef __APPLE2__ # define clock() 0 +# undef CLK_TCK # define CLK_TCK 1 #endif