summaryrefslogtreecommitdiff
path: root/openbsd-compat/xmmap.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2007-04-29 14:02:43 +1000
committerDarren Tucker <dtucker@zip.com.au>2007-04-29 14:02:43 +1000
commit2ac529b5055ebccd5c2251e373940eee156dc967 (patch)
tree86eafa1d95637cbd69ccc768d5fdd0d97d443fc1 /openbsd-compat/xmmap.c
parentcc40d5ecdfe1bdb8f37cc385669e8b6e0b641fb2 (diff)
- (dtucker) [openbsd-compat/xmmap.c] Include stdlib.h for mkstemp prototype.
Diffstat (limited to 'openbsd-compat/xmmap.c')
-rw-r--r--openbsd-compat/xmmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsd-compat/xmmap.c b/openbsd-compat/xmmap.c
index 0fb23269b..397bc9653 100644
--- a/openbsd-compat/xmmap.c
+++ b/openbsd-compat/xmmap.c
@@ -23,7 +23,7 @@
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26/* $Id: xmmap.c,v 1.12 2006/08/24 09:58:36 dtucker Exp $ */ 26/* $Id: xmmap.c,v 1.13 2007/04/29 04:02:43 dtucker Exp $ */
27 27
28#include "includes.h" 28#include "includes.h"
29 29
@@ -38,6 +38,7 @@
38#endif 38#endif
39#include <errno.h> 39#include <errno.h>
40#include <stdarg.h> 40#include <stdarg.h>
41#include <stdlib.h>
41#include <string.h> 42#include <string.h>
42#include <unistd.h> 43#include <unistd.h>
43 44