Index: trunk/psLib/src/collections/psHash.c
===================================================================
--- trunk/psLib/src/collections/psHash.c	(revision 1841)
+++ trunk/psLib/src/collections/psHash.c	(revision 1842)
@@ -11,6 +11,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-09-21 23:15:04 $
+*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-09-21 23:17:53 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -84,5 +84,7 @@
     the new hash bucket.
  *****************************************************************************/
-static psHashBucket* hashBucketAlloc(const char *key, void *data, psHashBucket* next)
+static psHashBucket* hashBucketAlloc(const char *key,
+                                     void *data,
+                                     psHashBucket* next)
 {
     // Allocate memory for the new hash bucket.
@@ -210,5 +212,7 @@
 there is little common code between those functions.
   *****************************************************************************/
-static void *doHashWork(psHash* table, const char *key, void *data, bool remove
+static void *doHashWork(psHash* table,
+                        const char *key,
+                        void *data, bool remove
                            )
 {
@@ -340,5 +344,7 @@
     boolean value defining success or failure
  *****************************************************************************/
-bool psHashAdd(psHash* table, const char *key, void *data)
+bool psHashAdd(psHash* table,
+               const char *key,
+               void *data)
 {
     if (table == NULL) {
@@ -403,5 +409,6 @@
     boolean value defining success or failure
  *****************************************************************************/
-bool psHashRemove(psHash* table, const char *key)
+bool psHashRemove(psHash* table,
+                  const char *key)
 {
     void *data = NULL;
