aboutsummaryrefslogtreecommitdiff
path: root/ftos.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-14 21:44:23 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-14 21:44:23 +0000
commitdef39682628f0b5575d61bf5b6ce259c5da11d0c (patch)
tree7d71381825a4976efa81157b184f673dd307cd36 /ftos.c
parentf5fedc1282be886c84f573782c70d9dde50fcedc (diff)
these pragmas are only used for MSVC, not MinGW or Cygwin, therefore changing the define from NT to _MSC_VER
svn path=/trunk/externals/ext13/; revision=3901
Diffstat (limited to 'ftos.c')
-rw-r--r--ftos.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ftos.c b/ftos.c
index bad8389..ee0d3d0 100644
--- a/ftos.c
+++ b/ftos.c
@@ -1,13 +1,13 @@
#include "ext13.h"
#include "m_pd.h"
#include <sys/stat.h>
-#include <stdio.h>
+#include <stdio.h>
#ifndef NT
#include <unistd.h>
-#endif
+#endif
#include <string.h>
-#ifdef NT
+#ifdef _MSC_VER
#pragma warning( disable : 4244 )
#pragma warning( disable : 4305 )
#endif