]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Make `kill -t' output signal descriptions (not `?') on Tru64.
authorJim Meyering <jim@meyering.net>
Sat, 5 Apr 2003 15:49:46 +0000 (15:49 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 5 Apr 2003 15:49:46 +0000 (15:49 +0000)
(sys_siglist): Also check for __sys_siglist.

src/kill.c

index 6595647f947804bfa67f11743357fea423895e49..32ae99b38a185c28a929a2877e4c92caa1d09f34 100644 (file)
@@ -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