diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-20 18:15:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:00:53 -0500 |
commit | ce95caf0df0a9c22cd9a2a2305f0323be3b668a5 (patch) | |
tree | 3fc4e6e70bbc3be9bad1a2eaf03c411225aa7503 /source3/tdb/include | |
parent | 01c684a3e97013d665b165cdec3a0bf688c05a6f (diff) | |
download | samba-ce95caf0df0a9c22cd9a2a2305f0323be3b668a5.tar.gz samba-ce95caf0df0a9c22cd9a2a2305f0323be3b668a5.tar.bz2 samba-ce95caf0df0a9c22cd9a2a2305f0323be3b668a5.zip |
r18731: fix the build on aix
metze
(This used to be commit ff88592426b851295604717b4fe52290504fc543)
Diffstat (limited to 'source3/tdb/include')
-rw-r--r-- | source3/tdb/include/tdbutil.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/tdb/include/tdbutil.h b/source3/tdb/include/tdbutil.h index 44351619f4..1bc000337b 100644 --- a/source3/tdb/include/tdbutil.h +++ b/source3/tdb/include/tdbutil.h @@ -23,6 +23,11 @@ #include "tdb.h" +#ifndef _BOOL +typedef int BOOL; +#define _BOOL +#endif + /* single node of a list returned by tdb_search_keys */ typedef struct keys_node { |