A recent patch introduced new code for sig2str/str2sig.
This code does not properly exclude code that requires
SIGRTMIN/SIGRTMAX to be defined and triggers the following
compile error:
newlib/libc/signal/sig2str.c:199:8: error: 'SIGRTMIN' undeclared
newlib/libc/signal/sig2str.c:200:29: error: 'SIGRTMAX' undeclared
Let's add the missing guards.
Fixes:
|
||
|---|---|---|
| .. | ||
| Makefile.am | ||
| Makefile.in | ||
| psignal.c | ||
| raise.c | ||
| sig2str.c | ||
| signal.c | ||
| signal.tex | ||