aboutsummaryrefslogtreecommitdiffstats
path: root/posix
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-06-20 20:30:35 +0300
committerArnold D. Robbins <arnold@skeeve.com>2011-06-20 20:30:35 +0300
commitbcbe7799ffc4b051e52eaf8f7f19ff844d4c7d20 (patch)
tree3337e50edf2f7ac6a3aaa1c2ff4842c8926db17f /posix
parentf467d127a7f09c4af97d4acfb0694e78b50751cb (diff)
downloadegawk-bcbe7799ffc4b051e52eaf8f7f19ff844d4c7d20.tar.gz
egawk-bcbe7799ffc4b051e52eaf8f7f19ff844d4c7d20.tar.bz2
egawk-bcbe7799ffc4b051e52eaf8f7f19ff844d4c7d20.zip
Minor bug fixes, incl build system for pc, vms.
Diffstat (limited to 'posix')
-rw-r--r--posix/ChangeLog5
-rw-r--r--posix/gawkmisc.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/posix/ChangeLog b/posix/ChangeLog
index fdc034ac..eae49b37 100644
--- a/posix/ChangeLog
+++ b/posix/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jun 20 20:19:03 2011 Corinna Vinschen <vinschen@redhat.com>
+
+ * gawkmisc.c: Add include of <windows.h> for Cygwin to
+ remove a compiler warning.
+
Mon May 2 23:38:06 2011 Corinna Vinschen <vinschen@redhat.com>
* gawkmisc.c (cygwin_premain0): Use the real type for the secondnd
diff --git a/posix/gawkmisc.c b/posix/gawkmisc.c
index f4bbf66b..acc3c9d5 100644
--- a/posix/gawkmisc.c
+++ b/posix/gawkmisc.c
@@ -19,6 +19,7 @@
#ifdef __CYGWIN__
#include <stdio.h>
+#include <windows.h>
#include <sys/cygwin.h>
#include <io.h>
#endif