diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-18 19:46:18 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-18 19:46:18 +0000 |
commit | 580c1888bec85d6ec20b8c9d3b893b5397a71325 (patch) | |
tree | 8436e0086627f6510be71ca66b6d0aef3e55d4eb /signal | |
parent | 4d049a8baacf9ede77b91cff4582798f7df350e8 (diff) | |
download | glibc-580c1888bec85d6ec20b8c9d3b893b5397a71325.tar.gz glibc-580c1888bec85d6ec20b8c9d3b893b5397a71325.tar.xz glibc-580c1888bec85d6ec20b8c9d3b893b5397a71325.zip |
* signal/signal.h [__USE_BSD] (_sys_siglist, sys_siglist): Declare
them.
Diffstat (limited to 'signal')
-rw-r--r-- | signal/signal.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/signal/signal.h b/signal/signal.h index a6db005721..9d6c54bc44 100644 --- a/signal/signal.h +++ b/signal/signal.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -178,6 +178,11 @@ extern int sigpending __P ((sigset_t *__set)); #if defined(_SIGNAL_H) && defined(__USE_BSD) +/* Names of the signals. This variable exists only for compatiblity. + Use `strsignal' instead (see <string.h>). */ +extern __const char *__const _sys_siglist[NSIG]; +extern __const char *__const sys_siglist[NSIG]; + /* Structure passed to `sigvec'. */ struct sigvec { |