summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorCharles Longeau <chl@cvs.openbsd.org>2012-01-18 17:23:12 +0000
committerCharles Longeau <chl@cvs.openbsd.org>2012-01-18 17:23:12 +0000
commit01c8e05f48211a9e4ae045000decf04d3e4fe6af (patch)
tree88efbfca63ade259eb2a5d91ed75421188d0b8d6 /lib
parent25aff57430b1539c7b93803102884b4f54bf78ef (diff)
Add missing header needed by iswspace()
ok stsp@
Diffstat (limited to 'lib')
-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