From 9c0e19a3be2288db79e2502e5fa450c3e20a668d Mon Sep 17 00:00:00 2001 From: Guenter Geiger Date: Fri, 9 May 2003 16:04:00 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r610, which included commits to RCS files with non-trunk default branches. svn path=/trunk/; revision=611 --- pd/src/s_file.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pd/src/s_file.c') diff --git a/pd/src/s_file.c b/pd/src/s_file.c index 32d2fcaa..27825d59 100644 --- a/pd/src/s_file.c +++ b/pd/src/s_file.c @@ -6,7 +6,8 @@ * this file contains file-handling routines. */ -#include "m_imp.h" +#include "m_pd.h" +#include "s_stuff.h" #include #include @@ -29,7 +30,7 @@ void sys_bashfilename(const char *from, char *to) char c; while (c = *from++) { -#ifdef NT +#ifdef MSW if (c == '/') c = '\\'; #endif *to++ = c; @@ -44,7 +45,7 @@ void sys_unbashfilename(const char *from, char *to) char c; while (c = *from++) { -#ifdef NT +#ifdef MSW if (c == '\\') c = '/'; #endif *to++ = c; -- cgit v1.2.1