Protect the definitions of the t_bool enum

[[Split portion of a mixed commit.]]

From-SVN: r29923.2
This commit is contained in:
Bruce Korb 1999-10-12 15:57:47 +00:00 committed by Bruce Korb
parent 8988641b74
commit bf66d77aa5
2 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,8 @@ Fri Oct 8 19:46:03 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
Tue Oct 12 07:38:41 1999 Bruce Korb <autogen@linuxbox.com>
* fixincl/*: Merged "no_bogosity" branch
* fixincl/fixlib.h: protect against doubly defining t_bool
* fixincl/server.h: protect against doubly defining t_bool
Mon Oct 11 20:18:41 1999 Jim Wilson <wilson@cygnus.com>

View File

@ -76,10 +76,13 @@ typedef int t_success;
#define EXIT_PANIC 99
#ifndef HAVE_T_BOOL_ENUM
#define HAVE_T_BOOL_ENUM
typedef enum
{
BOOL_FALSE, BOOL_TRUE
} t_bool;
#endif
#define _P_(p) ()
#endif