From 9ce58f1f4ec9e63a4b56cf866da4f1537c93e594 Mon Sep 17 00:00:00 2001 From: Andrew Nelless Date: Wed, 8 Mar 2017 18:36:08 +0000 Subject: [PATCH] Remove suspicious looking fp.h hack for macOS --- src/lib/common/common.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/lib/common/common.h b/src/lib/common/common.h index 6d712e82..893f032a 100644 --- a/src/lib/common/common.h +++ b/src/lib/common/common.h @@ -102,14 +102,6 @@ # define SIZE_OF_LONG 4 #endif -// FIXME -- including fp.h from Carbon.h causes a undefined symbol error -// on my build system. the symbol is scalb. since we don't need any -// math functions we define __FP__, the include guard macro for fp.h, to -// prevent fp.h from being included. -#if defined(__APPLE__) -# define __FP__ -#endif - // define NULL #include