aboutsummaryrefslogtreecommitdiff
path: root/cyclone/sickle/cosx.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-22 17:19:36 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-22 17:19:36 +0000
commitc9d724b6da2ae3aceae3896a669420ff3c804f0d (patch)
tree2722332132223a123caa6ba44ec0899e64cab1c4 /cyclone/sickle/cosx.c
parent44e4dadbfdd1118ff5a64d6195eaa168c29405a3 (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/sickle/cosx.c')
-rw-r--r--cyclone/sickle/cosx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cyclone/sickle/cosx.c b/cyclone/sickle/cosx.c
index b368559..c9f14ec 100644
--- a/cyclone/sickle/cosx.c
+++ b/cyclone/sickle/cosx.c
@@ -9,7 +9,7 @@
/* by definition, this is just an interface to the -lm call
(do not use costable) */
-#if defined(NT) || defined(MACOSX)
+#if defined(_WIN32) || defined(MACOSX)
/* cf pd/src/x_arithmetic.c */
#define cosf cos
#endif