2010-05-12 Marcus Brinkmann <marcus@g10code.de>

* priv-io.h: Include <sys/types.h>
	* util.h: Likewise.
This commit is contained in:
Marcus Brinkmann 2010-05-12 16:55:39 +00:00
parent 383ede75dc
commit 88906258ef
3 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2010-05-12 Marcus Brinkmann <marcus@g10code.de>
* priv-io.h: Include <sys/types.h>
* util.h: Likewise.
2010-05-11 Marcus Brinkmann <marcus@g10code.de> 2010-05-11 Marcus Brinkmann <marcus@g10code.de>
* w32-util.c: Include ath.h * w32-util.c: Include ath.h

View File

@ -28,6 +28,10 @@
# include <sys/socket.h> # include <sys/socket.h>
#endif #endif
/* For pid_t. */
#include <sys/types.h>
/* A single file descriptor passed to spawn. For child fds, dup_to /* A single file descriptor passed to spawn. For child fds, dup_to
specifies the fd it should become in the child, but only 0, 1 and 2 specifies the fd it should become in the child, but only 0, 1 and 2
are valid values (due to a limitation in the W32 code). As return are valid values (due to a limitation in the W32 code). As return

View File

@ -22,6 +22,13 @@
#ifndef UTIL_H #ifndef UTIL_H
#define UTIL_H #define UTIL_H
#ifdef HAVE_W32CE_SYSTEM
#include "w32-ce.h"
#endif
/* For pid_t. */
#include <sys/types.h>
#include "gpgme.h" #include "gpgme.h"