summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/vfwscanf.c
diff options
context:
space:
mode:
authorchl <chl@openbsd.org>2012-01-18 17:23:11 +0000
committerchl <chl@openbsd.org>2012-01-18 17:23:11 +0000
commit3430db0097f566558d252a046455c1e36309d5a0 (patch)
tree1d7821cea411dd5bd1b865a4d6f5142eb49e21d1 /lib/libc/stdio/vfwscanf.c
parentRemove dead assignments and newly created unused variables. (diff)
downloadwireguard-openbsd-3430db0097f566558d252a046455c1e36309d5a0.tar.xz
wireguard-openbsd-3430db0097f566558d252a046455c1e36309d5a0.zip
Add missing header needed by iswspace()
ok stsp@
Diffstat (limited to 'lib/libc/stdio/vfwscanf.c')
-rw-r--r--lib/libc/stdio/vfwscanf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/vfwscanf.c b/lib/libc/stdio/vfwscanf.c
index 942ede0fe97..e5cf5e129c1 100644
--- a/lib/libc/stdio/vfwscanf.c
+++ b/lib/libc/stdio/vfwscanf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfwscanf.c,v 1.1 2011/10/16 13:20:51 stsp Exp $ */
+/* $OpenBSD: vfwscanf.c,v 1.2 2012/01/18 17:23:11 chl Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
@@ -40,6 +40,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <wctype.h>
#include "local.h"
#ifdef FLOATING_POINT