From aefe9bc11682f39b3936b9f01a0d37e9d6428078 Mon Sep 17 00:00:00 2001 From: ehofman Date: Sat, 31 Oct 2009 08:41:07 +0000 Subject: [PATCH] MacOS X fix --- simgear/compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/compiler.h b/simgear/compiler.h index cfa91f86..5f02adb2 100644 --- a/simgear/compiler.h +++ b/simgear/compiler.h @@ -138,8 +138,8 @@ inline int (isnan)(double r) { return !(r <= 0 || r >= 0); } // any C++ header file undefines isinf and isnan // so this should be included before // the functions are STILL in libm (libSystem on mac os x) -extern "C" int isnan (double); -extern "C" int isinf (double); +extern "C" int (isnan)(double); +extern "C" int (isinf)(double); # endif # else inline int (isnan)(double r) { return !(r <= 0 || r >= 0); } -- 2.39.5