1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 07:27:59 -08:00

Add #include <stdlib.h> for mkstemp.

Spotted by maya@netbsd

ok deraadt@
This commit is contained in:
bcallah 2019-07-24 14:33:16 +00:00
parent 07a5d217b4
commit c6479af218

View File

@ -1,4 +1,4 @@
/* $OpenBSD: io.c,v 1.37 2019/06/28 13:34:59 deraadt Exp $ */
/* $OpenBSD: io.c,v 1.38 2019/07/24 14:33:16 bcallah Exp $ */
/*
* shell buffered IO and formatted output
@ -9,6 +9,7 @@
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>