summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchl <chl@openbsd.org>2007-09-25 10:02:50 +0000
committerchl <chl@openbsd.org>2007-09-25 10:02:50 +0000
commitd06884b84296394a60575740d5383fb47c6734c5 (patch)
tree324f379d32bae71b01ba0a5a1d216fb7312e9c8e
parentremove unneeded feof (diff)
downloadwireguard-openbsd-d06884b84296394a60575740d5383fb47c6734c5.tar.xz
wireguard-openbsd-d06884b84296394a60575740d5383fb47c6734c5.zip
missing header for mkstemp
ok joris@
-rw-r--r--usr.bin/cvs/buf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/buf.c b/usr.bin/cvs/buf.c
index 35e21873c89..578d17acac9 100644
--- a/usr.bin/cvs/buf.c
+++ b/usr.bin/cvs/buf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: buf.c,v 1.65 2007/09/17 10:07:21 tobias Exp $ */
+/* $OpenBSD: buf.c,v 1.66 2007/09/25 10:02:50 chl Exp $ */
/*
* Copyright (c) 2003 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -28,6 +28,7 @@
#include <errno.h>
#include <fcntl.h>
+#include <stdlib.h>
#include <string.h>
#include <unistd.h>