aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Schulz <[email protected]>2002-01-09 14:58:59 +0000
committerTimo Schulz <[email protected]>2002-01-09 14:58:59 +0000
commitd346578fb1f61ca2c487a773fd6c7c6f6fa53660 (patch)
tree6285226cf8164d3ee8cd47693b58f8052177e8d9
parentBetter description for --encrypt-files. (diff)
downloadgnupg-d346578fb1f61ca2c487a773fd6c7c6f6fa53660.tar.gz
gnupg-d346578fb1f61ca2c487a773fd6c7c6f6fa53660.zip
Added missing include file.
-rw-r--r--g10/ChangeLog4
-rw-r--r--g10/exec.c3
2 files changed, 7 insertions, 0 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index dc6dc924e..872791703 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-09 Timo Schulz <[email protected]>
+
+ * exec.c: Include windows.h for dosish systems.
+
2002-01-08 Timo Schulz <[email protected]>
* g10.c (main): New description for --encrypt-files.
diff --git a/g10/exec.c b/g10/exec.c
index 9cf40b329..9299d5b3f 100644
--- a/g10/exec.c
+++ b/g10/exec.c
@@ -27,6 +27,9 @@
#ifndef EXEC_TEMPFILE_ONLY
#include <sys/wait.h>
#endif
+#ifdef HAVE_DOSISH_SYSTEM
+#include <windows.h>
+#endif
#include <fcntl.h>
#include <unistd.h>
#include <string.h>