From 643db65912ac1b19cafc5e6a194828132029ba79 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 1 Aug 2011 23:29:14 +0000 Subject: replaced NT and UNIX macros with _WIN32 and _MSC_VER where appropriate svn path=/trunk/externals/unauthorized/; revision=15192 --- formant~.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'formant~.c') diff --git a/formant~.c b/formant~.c index 686974b..67b442b 100644 --- a/formant~.c +++ b/formant~.c @@ -38,13 +38,12 @@ #include #endif #include -#ifdef UNIX -#include -#endif -#ifdef NT -#define M_PI 3.14159265358979323846 -#endif #include +#ifdef _MSC_VER +# define M_PI 3.14159265358979323846 +#else +# include +#endif #include /* standard pd stuff */ -- cgit v1.2.1