diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/util.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 9674662aa..4a8ef7551 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2003-07-30 Werner Koch <[email protected]> + + * util.h: Replaced some __MINGW32__ by _WIN32. + 2003-06-26 David Shaw <[email protected]> * types.h: Prefer using uint64_t when creating a 64-bit unsigned diff --git a/include/util.h b/include/util.h index fc09ebe3c..736e5f620 100644 --- a/include/util.h +++ b/include/util.h @@ -20,7 +20,7 @@ #ifndef G10_UTIL_H #define G10_UTIL_H -#if defined (__MINGW32__) || defined (__CYGWIN32__) +#if defined (_WIN32) || defined (__CYGWIN32__) #include <stdarg.h> #endif @@ -229,7 +229,7 @@ int strncasecmp (const char *, const char *b, size_t n); #define memmove(d, s, n) bcopy((s), (d), (n)) #endif -#if defined (__MINGW32__) +#if defined (_WIN32) /*-- w32reg.c --*/ char *read_w32_registry_string( const char *root, const char *dir, const char *name ); |