From a6c94aa84e7495396d29b942f08e5d2158c30538 Mon Sep 17 00:00:00 2001 From: "Christopher R. Hertel" Date: Thu, 25 Jun 1998 00:22:48 +0000 Subject: Minor cosmetic change. I up-cased internal #defines. (This used to be commit 1ce7d38d9f947d338f2587fa5afbe7536501edfd) --- source3/ubiqx/ubi_BinTree.c | 8 ++++++-- source3/ubiqx/ubi_BinTree.h | 4 ++++ source3/ubiqx/ubi_SplayTree.c | 8 ++++++-- source3/ubiqx/ubi_SplayTree.h | 10 +++++++--- source3/ubiqx/ubi_dLinkList.c | 4 ++++ source3/ubiqx/ubi_dLinkList.h | 10 +++++++--- source3/ubiqx/ubi_sLinkList.c | 4 ++++ source3/ubiqx/ubi_sLinkList.h | 10 +++++++--- 8 files changed, 45 insertions(+), 13 deletions(-) diff --git a/source3/ubiqx/ubi_BinTree.c b/source3/ubiqx/ubi_BinTree.c index 11fe6fae8a..62d17d5255 100644 --- a/source3/ubiqx/ubi_BinTree.c +++ b/source3/ubiqx/ubi_BinTree.c @@ -27,6 +27,10 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_BinTree.c,v + * Revision 4.5 1998/06/04 21:29:27 crh + * Upper-cased defined constants (eg UBI_BINTREE_H) in some header files. + * This is more "standard", and is what people expect. Weird, eh? + * * 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. @@ -151,8 +155,8 @@ */ static char ModuleID[] = "ubi_BinTree\n\ -\tRevision: 4.4 \n\ -\tDate: 1998/06/03 17:42:46 \n\ +\tRevision: 4.5 \n\ +\tDate: 1998/06/04 21:29:27 \n\ \tAuthor: crh \n"; /* ========================================================================== ** diff --git a/source3/ubiqx/ubi_BinTree.h b/source3/ubiqx/ubi_BinTree.h index 15b22df707..9b7cda4bf2 100644 --- a/source3/ubiqx/ubi_BinTree.h +++ b/source3/ubiqx/ubi_BinTree.h @@ -29,6 +29,10 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_BinTree.h,v + * Revision 4.5 1998/06/04 21:29:27 crh + * Upper-cased defined constants (eg UBI_BINTREE_H) in some header files. + * This is more "standard", and is what people expect. Weird, eh? + * * 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. diff --git a/source3/ubiqx/ubi_SplayTree.c b/source3/ubiqx/ubi_SplayTree.c index d790ff58d1..ad8d568658 100644 --- a/source3/ubiqx/ubi_SplayTree.c +++ b/source3/ubiqx/ubi_SplayTree.c @@ -37,6 +37,10 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_SplayTree.c,v + * Revision 4.4 1998/06/04 21:29:27 crh + * Upper-cased defined constants (eg UBI_BINTREE_H) in some header files. + * This is more "standard", and is what people expect. Weird, eh? + * * Revision 4.3 1998/06/03 17:45:05 crh * Further fiddling with sys_include.h. It's now in ubi_BinTree.h which is * included by all of the binary tree files. @@ -159,8 +163,8 @@ */ static char ModuleID[] = "ubi_SplayTree\n\ -\tRevision: 4.3 \n\ -\tDate: 1998/06/03 17:45:05 \n\ +\tRevision: 4.4 \n\ +\tDate: 1998/06/04 21:29:27 \n\ \tAuthor: crh \n"; diff --git a/source3/ubiqx/ubi_SplayTree.h b/source3/ubiqx/ubi_SplayTree.h index 156980ceb7..0b62f7f7e7 100644 --- a/source3/ubiqx/ubi_SplayTree.h +++ b/source3/ubiqx/ubi_SplayTree.h @@ -1,5 +1,5 @@ -#ifndef ubi_SplayTree_H -#define ubi_SplayTree_H +#ifndef UBI_SPLAYTREE_H +#define UBI_SPLAYTREE_H /* ========================================================================== ** * ubi_SplayTree.h * @@ -39,6 +39,10 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_SplayTree.h,v + * Revision 4.4 1998/06/04 21:29:27 crh + * Upper-cased defined constants (eg UBI_BINTREE_H) in some header files. + * This is more "standard", and is what people expect. Weird, eh? + * * Revision 4.3 1998/06/03 17:45:05 crh * Further fiddling with sys_include.h. It's now in ubi_BinTree.h which is * included by all of the binary tree files. @@ -364,4 +368,4 @@ int ubi_sptModuleID( int size, char *list[] ); #define ubi_trModuleID( s, l ) ubi_sptModuleID( s, l ) /* ================================ The End ================================= */ -#endif /* ubi_SplayTree_H */ +#endif /* UBI_SPLAYTREE_H */ diff --git a/source3/ubiqx/ubi_dLinkList.c b/source3/ubiqx/ubi_dLinkList.c index 587ac3ef8f..a2db4a2d0d 100644 --- a/source3/ubiqx/ubi_dLinkList.c +++ b/source3/ubiqx/ubi_dLinkList.c @@ -25,6 +25,10 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_dLinkList.c,v + * Revision 0.9 1998/06/04 21:29:27 crh + * Upper-cased defined constants (eg UBI_BINTREE_H) in some header files. + * This is more "standard", and is what people expect. Weird, eh? + * * Revision 0.8 1998/06/03 18:06:03 crh * Further fiddling with sys_include.h, which has been moved from the .c file * to the .h file. diff --git a/source3/ubiqx/ubi_dLinkList.h b/source3/ubiqx/ubi_dLinkList.h index d1a773b9cd..9e2cb9c4d2 100644 --- a/source3/ubiqx/ubi_dLinkList.h +++ b/source3/ubiqx/ubi_dLinkList.h @@ -1,5 +1,5 @@ -#ifndef ubi_dLinkList_H -#define ubi_dLinkList_H +#ifndef UBI_DLINKLIST_H +#define UBI_DLINKLIST_H /* ========================================================================== ** * ubi_dLinkList.h * @@ -27,6 +27,10 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_dLinkList.h,v + * Revision 0.9 1998/06/04 21:29:27 crh + * Upper-cased defined constants (eg UBI_BINTREE_H) in some header files. + * This is more "standard", and is what people expect. Weird, eh? + * * Revision 0.8 1998/06/03 18:06:03 crh * Further fiddling with sys_include.h, which has been moved from the .c file * to the .h file. @@ -218,4 +222,4 @@ ubi_dlNodePtr ubi_dlRemove( ubi_dlListPtr ListPtr, ubi_dlNodePtr Old ); */ /* ================================ The End ================================= */ -#endif /* ubi_dLinkList_H */ +#endif /* UBI_DLINKLIST_H */ diff --git a/source3/ubiqx/ubi_sLinkList.c b/source3/ubiqx/ubi_sLinkList.c index 0800f00ab7..a281711b81 100644 --- a/source3/ubiqx/ubi_sLinkList.c +++ b/source3/ubiqx/ubi_sLinkList.c @@ -25,6 +25,10 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_sLinkList.c,v + * Revision 0.8 1998/06/04 21:29:27 crh + * Upper-cased defined constants (eg UBI_BINTREE_H) in some header files. + * This is more "standard", and is what people expect. Weird, eh? + * * Revision 0.7 1998/06/03 18:06:03 crh * Further fiddling with sys_include.h, which has been moved from the .c file * to the .h file. diff --git a/source3/ubiqx/ubi_sLinkList.h b/source3/ubiqx/ubi_sLinkList.h index 8487118ca2..24f91178aa 100644 --- a/source3/ubiqx/ubi_sLinkList.h +++ b/source3/ubiqx/ubi_sLinkList.h @@ -1,5 +1,5 @@ -#ifndef ubi_sLinkList_H -#define ubi_sLinkList_H +#ifndef UBI_SLINKLIST_H +#define UBI_SLINKLIST_H /* ========================================================================== ** * ubi_sLinkList.h * @@ -27,6 +27,10 @@ * -------------------------------------------------------------------------- ** * * Log: ubi_sLinkList.h,v + * Revision 0.8 1998/06/04 21:29:27 crh + * Upper-cased defined constants (eg UBI_BINTREE_H) in some header files. + * This is more "standard", and is what people expect. Weird, eh? + * * Revision 0.7 1998/06/03 18:06:03 crh * Further fiddling with sys_include.h, which has been moved from the .c file * to the .h file. @@ -228,4 +232,4 @@ ubi_slNodePtr ubi_slRemove( ubi_slListPtr ListPtr, ubi_slNodePtr After ); */ /* ================================ The End ================================= */ -#endif /* ubi_sLinkList_H */ +#endif /* UBI_SLINKLIST_H */ -- cgit