[PATCH] newlib: sig2str: use __restrict

Mike Frysinger vapier@gentoo.org
Wed Sep 15 05:05:29 GMT 2021


This matches the header prototype style and most of newlib, and fixes
building with older versions of gcc which only accept the __ form.
---
 newlib/libc/signal/sig2str.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/newlib/libc/signal/sig2str.c b/newlib/libc/signal/sig2str.c
index d3be1ba68e87..f4df913e2d53 100644
--- a/newlib/libc/signal/sig2str.c
+++ b/newlib/libc/signal/sig2str.c
@@ -226,7 +226,7 @@ sig2str(int signum, char *str)
 }
 
 int
-str2sig(const char *restrict str, int *restrict pnum)
+str2sig(const char *__restrict str, int *__restrict pnum)
 {
   unsigned long j = 0;
   char *endp;
-- 
2.33.0



More information about the Newlib mailing list