diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-22 17:19:36 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-22 17:19:36 +0000 |
commit | c9d724b6da2ae3aceae3896a669420ff3c804f0d (patch) | |
tree | 2722332132223a123caa6ba44ec0899e64cab1c4 /cyclone/hammer | |
parent | 44e4dadbfdd1118ff5a64d6195eaa168c29405a3 (diff) |
replace NT with proper macro: _WIN32 (http://msdn.microsoft.com/en-us/library/ff540443.aspx)
svn path=/trunk/externals/miXed/; revision=16956
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 3f3abea..7175476 100644 --- a/cyclone/hammer/acos.c +++ b/cyclone/hammer/acos.c @@ -5,7 +5,7 @@ #include <math.h> #include "m_pd.h" -#if defined(NT) || defined(MACOSX) +#if defined(_WIN32) || defined(MACOSX) /* cf pd/src/x_arithmetic.c */ #define acosf acos #endif diff --git a/cyclone/hammer/asin.c b/cyclone/hammer/asin.c index 0aa8db7..18f8c72 100644 --- a/cyclone/hammer/asin.c +++ b/cyclone/hammer/asin.c @@ -5,7 +5,7 @@ #include <math.h> #include "m_pd.h" -#if defined(NT) || defined(MACOSX) +#if defined(_WIN32) || defined(MACOSX) /* cf pd/src/x_arithmetic.c */ #define asinf asin #endif diff --git a/cyclone/hammer/cartopol.c b/cyclone/hammer/cartopol.c index 4200686..ce9f546 100644 --- a/cyclone/hammer/cartopol.c +++ b/cyclone/hammer/cartopol.c @@ -5,7 +5,7 @@ #include <math.h> #include "m_pd.h" -#if defined(NT) || defined(MACOSX) +#if defined(_WIN32) || defined(MACOSX) /* 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 77d1567..664c169 100644 --- a/cyclone/hammer/cosh.c +++ b/cyclone/hammer/cosh.c @@ -5,7 +5,7 @@ #include <math.h> #include "m_pd.h" -#if defined(NT) || defined(MACOSX) +#if defined(_WIN32) || defined(MACOSX) /* cf pd/src/x_arithmetic.c */ #define coshf cosh #endif diff --git a/cyclone/hammer/poltocar.c b/cyclone/hammer/poltocar.c index 486eead..d634b8f 100644 --- a/cyclone/hammer/poltocar.c +++ b/cyclone/hammer/poltocar.c @@ -5,7 +5,7 @@ #include <math.h> #include "m_pd.h" -#if defined(NT) || defined(MACOSX) +#if defined(_WIN32) || defined(MACOSX) /* 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 93fb6fa..d3d41fb 100644 --- a/cyclone/hammer/sinh.c +++ b/cyclone/hammer/sinh.c @@ -5,7 +5,7 @@ #include <math.h> #include "m_pd.h" -#if defined(NT) || defined(MACOSX) +#if defined(_WIN32) || defined(MACOSX) /* cf pd/src/x_arithmetic.c */ #define sinhf sinh #endif diff --git a/cyclone/hammer/tanh.c b/cyclone/hammer/tanh.c index e124d4c..470fb21 100644 --- a/cyclone/hammer/tanh.c +++ b/cyclone/hammer/tanh.c @@ -5,7 +5,7 @@ #include <math.h> #include "m_pd.h" -#if defined(NT) || defined(MACOSX) +#if defined(_WIN32) || defined(MACOSX) /* cf pd/src/x_arithmetic.c */ #define tanhf tanh #endif |