2004-10-08 Jeff Johnston <jjohnstn@redhat.com>

* libc/include/sys/signal.h: If <signal.h> didn't include
        this header file, include <signal.h> to account for
        applications that take advantage that the two header
        files are the same in glibc.
This commit is contained in:
Jeff Johnston 2004-10-08 17:40:57 +00:00
parent b39ffd8c4a
commit 73131c2d20
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2004-10-08 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/sys/signal.h: If <signal.h> didn't include
this header file, include <signal.h> to account for
applications that take advantage that the two header
files are the same in glibc.
2004-10-05 Tomer Levi <Tomer.Levi@nsc.com>
* configure.host: Add support for crx.

View File

@ -3,6 +3,12 @@
#ifndef _SYS_SIGNAL_H
#define _SYS_SIGNAL_H
#ifndef _SIGNAL_H_
/* Some applications take advantage of the fact that <sys/signal.h>
* and <signal.h> are equivalent in glibc. Allow for that here. */
#include <signal.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif