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/isdigit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ctype/isdigit.c') diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c index cc8db83c..bbd228ad 100644 --- a/src/ctype/isdigit.c +++ b/src/ctype/isdigit.c @@ -7,6 +7,7 @@ int isdigit(int c) { + SIGNAL_SAFE(0); ASSERT_REPRESENTABLE(c, 0, UCHAR_MAX, unsigned char, EOF); return isxdigit(c) && !isalpha(c); -- cgit v1.2.1