diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2010-01-02 20:19:08 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2010-01-02 20:19:08 +0000 |
commit | a5fd6f6d29d3d56edb87c53a6bb432b9f830f74a (patch) | |
tree | 457d35a4206b1dc13d0aaee58d3c59c0d715a0d1 /which | |
parent | 999e69d2cf642b885aa70e82cf4f11f3c4192134 (diff) |
Changed MSW to _WIN32
svn path=/trunk/externals/mrpeach/; revision=12872
Diffstat (limited to 'which')
-rw-r--r-- | which/which.c | 4 |
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 |