commit | 92b10af793da235659198cf38ff2e0237c181058 | [log] [tgz] |
---|---|---|
author | Thorsten Glaser <tg@mirbsd.org> | Fri Oct 02 15:39:00 2009 +0200 |
committer | Jean-Baptiste Queru <jbq@google.com> | Thu Nov 05 15:50:05 2009 -0800 |
tree | 66d35bbe34224575dfbf0fde15ec29e424a87ccc | |
parent | 10093276e98d26428875480c502a278dffe550c7 [diff] [blame] |
Add the BSD sys_signame array. Signed-off-by: Thorsten Glaser <tg@mirbsd.org>
diff --git a/libc/unistd/siglist.c b/libc/unistd/siglist.c index a2ac9fe..f1c3377 100644 --- a/libc/unistd/siglist.c +++ b/libc/unistd/siglist.c
@@ -28,6 +28,6 @@ #include <signal.h> const char * const sys_siglist[NSIG] = { -#define __BIONIC_SIGDEF(x,y,z) [ x ] = z, +#define __BIONIC_SIGDEF(x,y,z) [ SIG##x ] = z, #include <sys/_sigdefs.h> };