diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-05 15:49:46 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-05 15:49:46 +0000 |
commit | ba2c2426940ebea3c2e5fb78a1a350d1e9d773d0 (patch) | |
tree | da35a3e897170c1dff7c450d213495d6172f8f69 /src | |
parent | 36662095bda9fb7e0d067bcdfe3b7e53e6c888fb (diff) | |
download | coreutils-ba2c2426940ebea3c2e5fb78a1a350d1e9d773d0.tar.xz |
Make `kill -t' output signal descriptions (not `?') on Tru64.
(sys_siglist): Also check for __sys_siglist.
Diffstat (limited to 'src')
-rw-r--r-- | src/kill.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kill.c b/src/kill.c index 6595647f9..32ae99b38 100644 --- a/src/kill.c +++ b/src/kill.c @@ -1,5 +1,5 @@ /* kill -- send a signal to a process - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -51,6 +51,8 @@ intmax_t strtoimax (); # if ! (HAVE_DECL_SYS_SIGLIST || defined sys_siglist) # if HAVE_DECL__SYS_SIGLIST || defined _sys_siglist # define sys_siglist _sys_siglist +# elif HAVE_DECL___SYS_SIGLIST || defined __sys_siglist +# define sys_siglist __sys_siglist # endif # endif # if HAVE_DECL_SYS_SIGLIST || defined sys_siglist |