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/toascii.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ctype/toascii.c') diff --git a/src/ctype/toascii.c b/src/ctype/toascii.c index 8a625b44..10963818 100644 --- a/src/ctype/toascii.c +++ b/src/ctype/toascii.c @@ -4,6 +4,7 @@ int toascii(int c) { + SIGNAL_SAFE(0); return (c & 0x7f); } -- cgit v1.2.1