diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-01-08 16:09:21 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-01-08 16:09:21 -0500 |
commit | f9185e64f3cbe401e0f2953951c4209abd409b40 (patch) | |
tree | c809072f4e89f976ff9776f3b5b3348d26c8faff /src/ctype/tolower.c | |
parent | 70505f05f3954bd4d8850a0ecb943e2dab2795e9 (diff) |
mark as not signal-safe
Diffstat (limited to 'src/ctype/tolower.c')
-rw-r--r-- | src/ctype/tolower.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ctype/tolower.c b/src/ctype/tolower.c index 02985d51..bea8506b 100644 --- a/src/ctype/tolower.c +++ b/src/ctype/tolower.c @@ -9,6 +9,7 @@ int tolower(int c) { unsigned char *map = __get_locale()->lc_ctype.ctolower; + SIGNAL_SAFE(0); ASSERT_REPRESENTABLE(c, 0, UCHAR_MAX, unsigned char, EOF); if (c == EOF) { |