diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2007-09-25 10:02:51 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2007-09-25 10:02:51 +0000 |
commit | 46a3d8424a8bb13e2ea8cef300bf9ea45e009ffe (patch) | |
tree | 0b34963daf3893f3e88c1d9f47dd6da50b175291 /usr.bin/cvs | |
parent | 221467dbd4b9ccb313778f7f9afad39d99ac586c (diff) |
missing header for mkstemp
ok joris@
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/buf.c | 3 |
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> |