* getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
authorSimon Josefsson <simon@josefsson.org>
Fri, 26 Aug 2005 12:33:59 +0000 (12:33 +0000)
committerSimon Josefsson <simon@josefsson.org>
Fri, 26 Aug 2005 12:33:59 +0000 (12:33 +0000)
Haible <bruno@clisp.org>.

lib/ChangeLog
lib/getpass.c

index 9a97443ea8773224ed474fc7859ddbb68ff42f27..3f5ceb9dbfbad80b52c7083781ba63a00024a9e0 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-26  Simon Josefsson  <jas@extundo.com>
+
+       * getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
+       Haible <bruno@clisp.org>.
+
 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
 
        * regexec.c (set_regs): Don't alloca with an unbounded size.
index cdf90ca57da89bef725fb60102722535b537b716..83f23698674d01103778dc919cc4763b2d58cc19 100644 (file)
@@ -23,7 +23,7 @@
 
 #include <stdio.h>
 
-#if !defined WIN32
+#if !defined _WIN32
 
 #include <stdbool.h>