diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-04-12 09:24:23 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-04-12 09:24:23 +0000 |
commit | 1e9b80a2fd14b8d42fd92e43ba2145e2fc124b47 (patch) | |
tree | b978e4cbdf6dd7777696b26338fced9ca45ec4f1 /src/include/c.h | |
parent | bb0a17412d133885c6eb98e1741ee65b89c528f1 (diff) |
modifications to pg_dump towards supporting dumping of ACLs (doesn't work yet!)
modification to c.h so that bool isn't typedef'd under __cplusplus
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index 877603f00d4..42767288790 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.9 1997/02/14 04:18:27 momjian Exp $ + * $Id: c.h,v 1.10 1997/04/12 09:24:23 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -60,7 +60,9 @@ */ #define false ((char) 0) #define true ((char) 1) +#ifndef __cplusplus typedef char bool; +#endif /* not C++ */ typedef bool *BoolPtr; #ifndef TRUE |