tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / nvi / dist / clib / iswblank.c
blob49e34cd5efc984c1e1cebbd744b7bd2446728048
1 #include "config.h"
3 #if defined(LIBC_SCCS) && !defined(lint)
4 static const char sccsid[] = "Id: iswblank.c,v 1.1 2001/10/11 19:22:29 skimo Exp ";
5 #endif /* LIBC_SCCS and not lint */
7 #include <wchar.h>
8 #include <wctype.h>
10 int
11 iswblank (wint_t wc)
13 return iswctype(wc, wctype("blank"));