Remove building with NOCRYPTO option
[minix.git] / external / bsd / nvi / dist / clib / iswblank.c
blobc79d7ea79b8b600993b43bb97c0ebcc13246de60
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 */
6 #else
7 __RCSID("$NetBSD: iswblank.c,v 1.2 2014/01/26 21:43:45 christos Exp $");
8 #endif
10 #include <wchar.h>
11 #include <wctype.h>
13 int
14 iswblank (wint_t wc)
16 return iswctype(wc, wctype("blank"));