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 | |
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')
-rw-r--r-- | cyclone/hammer/acos.c | 2 | ||||
-rw-r--r-- | cyclone/hammer/asin.c | 2 | ||||
-rw-r--r-- | cyclone/hammer/cartopol.c | 2 | ||||
-rw-r--r-- | cyclone/hammer/cosh.c | 2 | ||||
-rw-r--r-- | cyclone/hammer/poltocar.c | 2 | ||||
-rw-r--r-- | cyclone/hammer/sinh.c | 2 | ||||
-rw-r--r-- | cyclone/hammer/tanh.c | 2 |
7 files changed, 7 insertions, 7 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 diff --git a/cyclone/hammer/asin.c b/cyclone/hammer/asin.c index 18f8c72..89c91a0 100644 --- a/cyclone/hammer/asin.c +++ b/cyclone/hammer/asin.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 asinf asin #endif diff --git a/cyclone/hammer/cartopol.c b/cyclone/hammer/cartopol.c index ce9f546..962a05e 100644 --- a/cyclone/hammer/cartopol.c +++ b/cyclone/hammer/cartopol.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 atan2f atan2 #define hypotf hypot diff --git a/cyclone/hammer/cosh.c b/cyclone/hammer/cosh.c index 664c169..97a375e 100644 --- a/cyclone/hammer/cosh.c +++ b/cyclone/hammer/cosh.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 coshf cosh #endif diff --git a/cyclone/hammer/poltocar.c b/cyclone/hammer/poltocar.c index d634b8f..4ff5152 100644 --- a/cyclone/hammer/poltocar.c +++ b/cyclone/hammer/poltocar.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 sinf sin #define cosf cos diff --git a/cyclone/hammer/sinh.c b/cyclone/hammer/sinh.c index d3d41fb..a2f2157 100644 --- a/cyclone/hammer/sinh.c +++ b/cyclone/hammer/sinh.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 sinhf sinh #endif diff --git a/cyclone/hammer/tanh.c b/cyclone/hammer/tanh.c index 470fb21..4ccf150 100644 --- a/cyclone/hammer/tanh.c +++ b/cyclone/hammer/tanh.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 tanhf tanh #endif |