diff options
author | 2008-05-05 21:50:45 +0000 | |
---|---|---|
committer | 2008-05-05 21:50:45 +0000 | |
commit | 55640ce8bb2264b13945cae1be900142dac1ef08 (patch) | |
tree | d703b3f534cd8e83a8f4176072c72601866ff276 /lib/libc/stdio/vfprintf.c | |
parent | Document signal sensor. (diff) | |
download | wireguard-openbsd-55640ce8bb2264b13945cae1be900142dac1ef08.tar.xz wireguard-openbsd-55640ce8bb2264b13945cae1be900142dac1ef08.zip |
add missing header for getpagesize
ok espie@
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index a99b32cf9a4..d4e96dd4ab8 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.43 2007/11/28 19:06:19 deraadt Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.44 2008/05/05 21:50:45 chl Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -48,6 +48,7 @@ #include <stdint.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #include "local.h" #include "fvwrite.h" |