aboutsummaryrefslogtreecommitdiff
path: root/which/which.c
diff options
context:
space:
mode:
authorMartin Peach <mrpeach@users.sourceforge.net>2010-01-02 20:19:08 +0000
committerMartin Peach <mrpeach@users.sourceforge.net>2010-01-02 20:19:08 +0000
commita5fd6f6d29d3d56edb87c53a6bb432b9f830f74a (patch)
tree457d35a4206b1dc13d0aaee58d3c59c0d715a0d1 /which/which.c
parent999e69d2cf642b885aa70e82cf4f11f3c4192134 (diff)
Changed MSW to _WIN32
svn path=/trunk/externals/mrpeach/; revision=12872
Diffstat (limited to 'which/which.c')
-rw-r--r--which/which.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/which/which.c b/which/which.c
index bcee712..2714836 100644
--- a/which/which.c
+++ b/which/which.c
@@ -5,7 +5,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h> /* for strncpy strncat */
-#ifdef MSW
+#ifdef _WIN32
#include <io.h>
#include <fcntl.h>
#include <sys/stat.h>
@@ -52,7 +52,7 @@ static char sys_dllextent[] = ".d_fat", sys_dllextent2[] = ".pd_darwin";
static char sys_dllextent[] = ".d_ppc", sys_dllextent2[] = ".pd_darwin";
#endif
#endif
-#ifdef MSW
+#ifdef _WIN32
static char sys_dllextent[] = ".m_i386", sys_dllextent2[] = ".dll";
#endif