We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d58f986 commit e116604Copy full SHA for e116604
unix/mkerrors.sh
@@ -656,7 +656,7 @@ errors=$(
656
signals=$(
657
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags |
658
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' |
659
- grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' |
+ grep -E -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' |
660
sort
661
)
662
@@ -666,7 +666,7 @@ echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
666
sort >_error.grep
667
668
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' |
669
670
sort >_signal.grep
671
672
echo '// mkerrors.sh' "$@"
0 commit comments