diff options
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 |