diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 15:45:07 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 15:45:07 -0500 |
| commit | 910a86c095b6d7311d73fa88a632aa9b673243b2 (patch) | |
| tree | a95289a96455cbb5d3bfe83a974583e05faa1ad1 /src/wctype/iswgraph.c | |
| parent | efef927455cf3ee7566fbe50d4344e3162e11635 (diff) | |
update standards and safety checks
Diffstat (limited to 'src/wctype/iswgraph.c')
| -rw-r--r-- | src/wctype/iswgraph.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/wctype/iswgraph.c b/src/wctype/iswgraph.c index 3175b232..f4eaf94d 100644 --- a/src/wctype/iswgraph.c +++ b/src/wctype/iswgraph.c @@ -1,12 +1,11 @@ -#if 0 - #include <wctype.h> #include <wchar.h> -#include "_assert.h" +#include "_safety.h" /** test whether a wide character is graphic **/ int iswgraph(wint_t wc) { + SIGNAL_SAFE(0); ASSERT_REPRESENTABLE(wc, WCHAR_MIN, WCHAR_MAX, "wchar_t", WEOF); wctype_t graph = wctype("graph"); @@ -28,6 +27,3 @@ cclass(graph) in the current locale. /* STDC(199409) */ - - -#endif |
