aboutsummaryrefslogtreecommitdiff
path: root/gcc/fixinc/fixlib.h
diff options
context:
space:
mode:
authorJohn David Anglin <dave@hiauly1.hia.nrc.ca>2001-03-03 19:05:00 +0000
committerJohn David Anglin <danglin@gcc.gnu.org>2001-03-03 19:05:00 +0000
commitf624290705e4dec86d53bddfe04dc6aec02004eb (patch)
tree2aebc5b0205dcc3e12e99ca0e1fb5ecd3ed48cc4 /gcc/fixinc/fixlib.h
parentbf71a4f81cb189fe894b8213753be2c16f31861a (diff)
downloadgcc-f624290705e4dec86d53bddfe04dc6aec02004eb.zip
gcc-f624290705e4dec86d53bddfe04dc6aec02004eb.tar.gz
gcc-f624290705e4dec86d53bddfe04dc6aec02004eb.tar.bz2
fixlib.h (t_bool): Add identifier `t_bool' in typedef.
* fixinc/fixlib.h (t_bool): Add identifier `t_bool' in typedef. * fixinc/server.c (read_pipe_timeout): Use enum t_bool instead of t_bool in declaration because pcc can't combine volatile with typedef types. From-SVN: r40217
Diffstat (limited to 'gcc/fixinc/fixlib.h')
-rw-r--r--gcc/fixinc/fixlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixinc/fixlib.h b/gcc/fixinc/fixlib.h
index 4490d20..166995c 100644
--- a/gcc/fixinc/fixlib.h
+++ b/gcc/fixinc/fixlib.h
@@ -3,7 +3,7 @@
files which are fixed to work correctly with ANSI C and placed in a
directory that GNU C will search.
- Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -88,7 +88,7 @@ typedef int t_success;
#define IGNORE_ARG(a) ((void)(a))
-typedef enum
+typedef enum t_bool
{
BOOL_FALSE, BOOL_TRUE
} t_bool;