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:
parent
b39ffd8c4a
commit
73131c2d20
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user