changeset 6128:268873642b36

* getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno Haible <bruno@clisp.org>.
author Simon Josefsson <simon@josefsson.org>
date Fri, 26 Aug 2005 12:33:59 +0000
parents fb10e4d261e3
children 2fce0cb93f59
files lib/ChangeLog lib/getpass.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -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.
--- a/lib/getpass.c
+++ b/lib/getpass.c
@@ -23,7 +23,7 @@
 
 #include <stdio.h>
 
-#if !defined WIN32
+#if !defined _WIN32
 
 #include <stdbool.h>