mirror of git://sourceware.org/git/glibc.git
* signal/signal.h [__USE_BSD] (_sys_siglist, sys_siglist): Declare
them.
This commit is contained in:
parent
4d049a8baa
commit
580c1888be
|
|
@ -1,5 +1,8 @@
|
||||||
Wed Oct 18 03:33:22 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
Wed Oct 18 03:33:22 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* signal/signal.h [__USE_BSD] (_sys_siglist, sys_siglist): Declare
|
||||||
|
them.
|
||||||
|
|
||||||
* sysdeps/generic/_strerror.c: Declare _sys_errlist and _sys_nerr.
|
* sysdeps/generic/_strerror.c: Declare _sys_errlist and _sys_nerr.
|
||||||
|
|
||||||
* hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For magic
|
* hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For magic
|
||||||
|
|
|
||||||
|
|
@ -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.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
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)
|
#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'. */
|
/* Structure passed to `sigvec'. */
|
||||||
struct sigvec
|
struct sigvec
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue