diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-02-23 19:10:16 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-02-23 19:10:16 +0000 |
commit | 35f55b7927acf1e4543daa8e89be2ef9bf144a5d (patch) | |
tree | ee7aef5f03fd63cb313037653f54938fb67c1f47 | |
parent | 0ca6f43514c11e30d76618be69fcb995b926d0d5 (diff) |
changed manual MSW macro to automatic _WIN32
svn path=/trunk/externals/moonlib/; revision=13188
-rw-r--r-- | ssaw~.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,7 +34,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #define LOWOFFSET 1 /* word offset to find LSB */ #define int32 long /* a data type that has 32 bits */ #else -#ifdef MSW +#ifdef _WIN32 /* little-endian; most significant byte is at highest address */ #define HIOFFSET 1 #define LOWOFFSET 0 @@ -79,7 +79,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #endif /* __APPLE__ */ #endif /* __linux__ */ -#endif /* MSW */ +#endif /* _WIN32 */ #endif /* SGI */ union tabfudge |