aboutsummaryrefslogtreecommitdiff
path: root/ftos.c
diff options
context:
space:
mode:
authorDaniel Heckenberg <dheck@users.sourceforge.net>2003-03-09 11:10:53 +0000
committerDaniel Heckenberg <dheck@users.sourceforge.net>2003-03-09 11:10:53 +0000
commita2d37998c5ea1c5712cb15d9d9ad885371ee4b5d (patch)
tree989e6f7306ad5beaf44756c0c45cbade9957805d /ftos.c
parent23da6252985418ada3083303f3847817a23044fb (diff)
Minor changes for compilation using Visual C++ 6.0 (SP3) under Windows
ncluding: - no array declaration with variable size - fixed signed/unsigned comparison warnings svn path=/trunk/externals/ext13/; revision=460
Diffstat (limited to 'ftos.c')
-rw-r--r--ftos.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ftos.c b/ftos.c
index db64e38..bad8389 100644
--- a/ftos.c
+++ b/ftos.c
@@ -1,8 +1,10 @@
#include "ext13.h"
#include "m_pd.h"
#include <sys/stat.h>
-#include <stdio.h>
+#include <stdio.h>
+#ifndef NT
#include <unistd.h>
+#endif
#include <string.h>
#ifdef NT