summaryrefslogtreecommitdiff
path: root/libc/stdlib
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-11-11 01:20:50 +0000
committerEric Andersen <andersen@codepoet.org>2000-11-11 01:20:50 +0000
commitdc7f2e1bf0dc6ab6bec1d531026fb39271287711 (patch)
tree4d665da55e40f6a14cd992e67b3ecbd5cd783e86 /libc/stdlib
parent91102e0dece0d33acf56a579dcab84b043f08c8b (diff)
Fix up a few messes so it compiles cleanly again.
Diffstat (limited to 'libc/stdlib')
-rw-r--r--libc/stdlib/mkstemp.c1
-rw-r--r--libc/stdlib/mktemp.c1
-rw-r--r--libc/stdlib/setenv.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/libc/stdlib/mkstemp.c b/libc/stdlib/mkstemp.c
index 738952815..551f03199 100644
--- a/libc/stdlib/mkstemp.c
+++ b/libc/stdlib/mkstemp.c
@@ -1,5 +1,6 @@
#include <string.h>
#include <features.h>
+#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
diff --git a/libc/stdlib/mktemp.c b/libc/stdlib/mktemp.c
index cfdcf0913..4b9f71d47 100644
--- a/libc/stdlib/mktemp.c
+++ b/libc/stdlib/mktemp.c
@@ -1,5 +1,6 @@
#include <string.h>
#include <features.h>
+#include <errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
diff --git a/libc/stdlib/setenv.c b/libc/stdlib/setenv.c
index b17280562..6628e4cc7 100644
--- a/libc/stdlib/setenv.c
+++ b/libc/stdlib/setenv.c
@@ -19,6 +19,7 @@ Cambridge, MA 02139, USA. */
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <errno.h>
#if !defined(HAVE_GNU_LD) && !defined (__ELF__)
#define __environ environ