diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-02-22 18:08:27 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-02-22 18:08:27 (GMT) |
commit | b9b4ea0f7bbf0313d8aa5e354ee56f912969763c (patch) | |
tree | ba5e857cda91949be14f508e6df490e1e2176f40 /Utilities/cmxmlrpc/bool.h | |
parent | bfcb4b693763bb11f841094d2ca9852a64e5d33b (diff) | |
download | CMake-b9b4ea0f7bbf0313d8aa5e354ee56f912969763c.zip CMake-b9b4ea0f7bbf0313d8aa5e354ee56f912969763c.tar.gz CMake-b9b4ea0f7bbf0313d8aa5e354ee56f912969763c.tar.bz2 |
ENH: Initial import
Diffstat (limited to 'Utilities/cmxmlrpc/bool.h')
-rw-r--r-- | Utilities/cmxmlrpc/bool.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Utilities/cmxmlrpc/bool.h b/Utilities/cmxmlrpc/bool.h new file mode 100644 index 0000000..8bf54f3 --- /dev/null +++ b/Utilities/cmxmlrpc/bool.h @@ -0,0 +1,18 @@ +#ifndef BOOL_H_INCLUDED +#define BOOL_H_INCLUDED + +#ifndef TRUE +#define TRUE (1) +#endif +#ifndef FALSE +#define FALSE (0) +#endif + +#ifndef __cplusplus +#ifndef HAVE_BOOL +#define HAVE_BOOL +typedef int bool; +#endif +#endif + +#endif |