crt: make iswblank always available in C++
Before this patch, wctype.h would make iswblank always available on C++,
but ctype.h and wchar.h would not. Since they share the same definition guard
macro, one could end up not getting iswblank in C++ when including
wctype.h after ctype.h / wchar.h .
This fixes this inconsistency by making it always available when
including those headers as well.
Signed-off-by: Matheus Izvekov <mizvekov@gmail.com>
Signed-off-by: Liu Hao <lh_mouse@126.com>
2 files changed