From f9185e64f3cbe401e0f2953951c4209abd409b40 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Mon, 8 Jan 2024 16:09:21 -0500 Subject: mark as not signal-safe --- src/ctype/isascii.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ctype/isascii.c') diff --git a/src/ctype/isascii.c b/src/ctype/isascii.c index fc0067d7..2543b224 100644 --- a/src/ctype/isascii.c +++ b/src/ctype/isascii.c @@ -4,6 +4,7 @@ int isascii(int c) { + SIGNAL_SAFE(0); if (0 <= c && c <= 0177) { return 1; } -- cgit v1.2.1