summaryrefslogtreecommitdiffstats
path: root/usr.bin/wc/wc.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/wc/wc.c')
-rw-r--r--usr.bin/wc/wc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/wc/wc.c b/usr.bin/wc/wc.c
index 6eb2602..85a90c9 100644
--- a/usr.bin/wc/wc.c
+++ b/usr.bin/wc/wc.c
@@ -59,6 +59,7 @@ __FBSDID("$FreeBSD$");
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <wctype.h>
uintmax_t tlinect, twordct, tcharct;
int doline, doword, dochar, domulti;
@@ -234,8 +235,7 @@ word: gotsp = 1;
p += clen;
if (wch == L'\n')
++linect;
- /* XXX Non-portable; should use iswspace() */
- if (isspace(wch))
+ if (iswspace(wch))
gotsp = 1;
else if (gotsp) {
gotsp = 0;
OpenPOWER on IntegriCloud