diff options
Diffstat (limited to 'fixincludes/fixlib.h')
-rw-r--r-- | fixincludes/fixlib.h | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/fixincludes/fixlib.h b/fixincludes/fixlib.h index 0ceb60b7626..8032f98eb48 100644 --- a/fixincludes/fixlib.h +++ b/fixincludes/fixlib.h @@ -3,7 +3,7 @@ files which are fixed to work correctly with ANSI C and placed in a directory that GCC will search. - Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GCC. @@ -40,6 +40,26 @@ Boston, MA 02111-1307, USA. */ # define STDOUT_FILENO 1 #endif +#if ! defined( SIGCHLD ) && defined( SIGCLD ) +# define SIGCHLD SIGCLD +#endif + +#ifndef SIGQUIT +#define SIGQUIT SIGTERM +#endif +#ifndef SIGIOT +#define SIGIOT SIGTERM +#endif +#ifndef SIGPIPE +#define SIGPIPE SIGTERM +#endif +#ifndef SIGALRM +#define SIGALRM SIGTERM +#endif +#ifndef SIGKILL +#define SIGKILL SIGTERM +#endif + typedef int t_success; #define FAILURE (-1) |