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/sickle/tanx.c | |
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/sickle/tanx.c')
-rw-r--r-- | cyclone/sickle/tanx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cyclone/sickle/tanx.c b/cyclone/sickle/tanx.c index d2a1102..5f86f8f 100644 --- a/cyclone/sickle/tanx.c +++ b/cyclone/sickle/tanx.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 tanf tan #endif |