diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-22 17:21:46 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-22 17:21:46 +0000 |
commit | 465f6508d0e2df031ad33e00023cf0c2c92d7642 (patch) | |
tree | adb654eb224955c9135bc1c8f9eab7c4c18a6a06 /cyclone/hammer/acos.c | |
parent | c9d724b6da2ae3aceae3896a669420ff3c804f0d (diff) |
replace MACOSX with proper macro: __APPLE__ (https://sourceforge.net/p/predef/wiki/OperatingSystems/)
svn path=/trunk/externals/miXed/; revision=16957
Diffstat (limited to 'cyclone/hammer/acos.c')
-rw-r--r-- | cyclone/hammer/acos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cyclone/hammer/acos.c b/cyclone/hammer/acos.c index 7175476..9aa52b3 100644 --- a/cyclone/hammer/acos.c +++ b/cyclone/hammer/acos.c @@ -5,7 +5,7 @@ #include <math.h> #include "m_pd.h" -#if defined(_WIN32) || defined(MACOSX) +#if defined(_WIN32) || defined(__APPLE__) /* cf pd/src/x_arithmetic.c */ #define acosf acos #endif |