1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 16:42:56 -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 * shell buffered IO and formatted output
@ -9,6 +9,7 @@
#include <ctype.h> #include <ctype.h>
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>