fix copy and paste error in regex code causing mishandling of \) in BRE
[musl] / src / exit / abort.c
1 #include <stdlib.h>
2 #include <signal.h>
3
4 void abort(void)
5 {
6         raise(SIGABRT);
7         for (;;);
8 }