summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>1998-06-25 00:22:48 +0000
committerChristopher R. Hertel <crh@samba.org>1998-06-25 00:22:48 +0000
commit1ce7d38d9f947d338f2587fa5afbe7536501edfd (patch)
treeb86778792e54c81aafdda9026c409b9cae437d83
parent384122d165ed6d5d211a29e5a63a63bf5cd82c75 (diff)
downloadsamba-1ce7d38d9f947d338f2587fa5afbe7536501edfd.tar.gz
Minor cosmetic change. I up-cased internal #defines.
-rw-r--r--source/ubiqx/ubi_BinTree.c8
-rw-r--r--source/ubiqx/ubi_BinTree.h4
-rw-r--r--source/ubiqx/ubi_SplayTree.c8
-rw-r--r--source/ubiqx/ubi_SplayTree.h10
-rw-r--r--source/ubiqx/ubi_dLinkList.c4
-rw-r--r--source/ubiqx/ubi_dLinkList.h10
-rw-r--r--source/ubiqx/ubi_sLinkList.c4
-rw-r--r--source/ubiqx/ubi_sLinkList.h10
8 files changed, 45 insertions, 13 deletions
diff --git a/source/ubiqx/ubi_BinTree.c b/source/ubiqx/ubi_BinTree.c
index 11fe6fae8a8..62d17d52555 100644
--- a/source/ubiqx/ubi_BinTree.c
+++ b/source/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/source/ubiqx/ubi_BinTree.h b/source/ubiqx/ubi_BinTree.h
index 15b22df7077..9b7cda4bf23 100644
--- a/source/ubiqx/ubi_BinTree.h
+++ b/source/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/source/ubiqx/ubi_SplayTree.c b/source/ubiqx/ubi_SplayTree.c
index d790ff58d1e..ad8d568658d 100644
--- a/source/ubiqx/ubi_SplayTree.c
+++ b/source/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/source/ubiqx/ubi_SplayTree.h b/source/ubiqx/ubi_SplayTree.h
index 156980ceb70..0b62f7f7e79 100644
--- a/source/ubiqx/ubi_SplayTree.h
+++ b/source/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/source/ubiqx/ubi_dLinkList.c b/source/ubiqx/ubi_dLinkList.c
index 587ac3ef8fc..a2db4a2d0d5 100644
--- a/source/ubiqx/ubi_dLinkList.c
+++ b/source/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/source/ubiqx/ubi_dLinkList.h b/source/ubiqx/ubi_dLinkList.h
index d1a773b9cdf..9e2cb9c4d26 100644
--- a/source/ubiqx/ubi_dLinkList.h
+++ b/source/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/source/ubiqx/ubi_sLinkList.c b/source/ubiqx/ubi_sLinkList.c
index 0800f00ab70..a281711b817 100644
--- a/source/ubiqx/ubi_sLinkList.c
+++ b/source/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/source/ubiqx/ubi_sLinkList.h b/source/ubiqx/ubi_sLinkList.h
index 8487118ca26..24f91178aa4 100644
--- a/source/ubiqx/ubi_sLinkList.h
+++ b/source/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 */