diff options
author | 1996-10-26 08:16:07 +0000 | |
---|---|---|
committer | 1996-10-26 08:16:07 +0000 | |
commit | 2eca12c0a23d94912e628e50a9b35487df7ebe63 (patch) | |
tree | 163ef37e99ca3bf6b912a2b3524c3955ac2ac260 /lib/libc/stdio/fvwrite.c | |
parent | more move changes (diff) | |
download | wireguard-openbsd-2eca12c0a23d94912e628e50a9b35487df7ebe63.tar.xz wireguard-openbsd-2eca12c0a23d94912e628e50a9b35487df7ebe63.zip |
Need <errno.h>
Diffstat (limited to 'lib/libc/stdio/fvwrite.c')
-rw-r--r-- | lib/libc/stdio/fvwrite.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/fvwrite.c b/lib/libc/stdio/fvwrite.c index aa4108b16a1..259152be86f 100644 --- a/lib/libc/stdio/fvwrite.c +++ b/lib/libc/stdio/fvwrite.c @@ -35,11 +35,12 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fvwrite.c,v 1.3 1996/10/26 06:58:58 tholo Exp $"; +static char rcsid[] = "$OpenBSD: fvwrite.c,v 1.4 1996/10/26 08:16:07 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> #include <string.h> +#include <errno.h> #include "local.h" #include "fvwrite.h" |