diff options
Diffstat (limited to 'source3/ubiqx/ubi_BinTree.c')
-rw-r--r-- | source3/ubiqx/ubi_BinTree.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/source3/ubiqx/ubi_BinTree.c b/source3/ubiqx/ubi_BinTree.c index 7786910632..11fe6fae8a 100644 --- a/source3/ubiqx/ubi_BinTree.c +++ b/source3/ubiqx/ubi_BinTree.c @@ -27,6 +27,18 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_BinTree.c,v + * Revision 4.4 1998/06/03 17:42:46 crh + * Further fiddling with sys_include.h. It's now in ubi_BinTree.h which is + * included by all of the binary tree files. + * + * Reminder: Some of the ubi_tr* macros in ubi_BinTree.h are redefined in + * ubi_AVLtree.h and ubi_SplayTree.h. This allows easy swapping + * of tree types by simply changing a header. Unfortunately, the + * macro redefinitions in ubi_AVLtree.h and ubi_SplayTree.h will + * conflict if used together. You must either choose a single tree + * type, or use the underlying function calls directly. Compare + * the two header files for more information. + * * Revision 4.3 1998/06/02 01:28:43 crh * Changed ubi_null.h to sys_include.h to make it more generic. * @@ -132,7 +144,6 @@ * ========================================================================== ** */ -#include "sys_include.h" /* System-specific includes. */ #include "ubi_BinTree.h" /* Header for this module. */ /* ========================================================================== ** @@ -140,8 +151,8 @@ */ static char ModuleID[] = "ubi_BinTree\n\ -\tRevision: 4.3 \n\ -\tDate: 1998/06/02 01:28:43 \n\ +\tRevision: 4.4 \n\ +\tDate: 1998/06/03 17:42:46 \n\ \tAuthor: crh \n"; /* ========================================================================== ** |