Index: trunk/archive/pslib/include/psHash.h
===================================================================
--- trunk/archive/pslib/include/psHash.h	(revision 257)
+++ trunk/archive/pslib/include/psHash.h	(revision 291)
@@ -16,11 +16,11 @@
 
 /// Allocate hash buckets in table.
-psHash *psHashAlloc(int nbucket)	///< initial number of buckets
-;
+psHash *psHashAlloc(int nbucket		///< initial number of buckets
+    );
 
 /// Free hash buckets from table.
 void psHashFree(psHash *table,		///< hash table to be freed
-		void (*itemFree)(void *item)) ///< how to free hashed data; or NULL
-;
+		void (*itemFree)(void *item) ///< how to free hashed data; or NULL
+    );
 
 /// Insert entry into table.
@@ -28,16 +28,16 @@
 		   const char *key,	///< key to use
 		   void *data,		///< data to insert
-		   void (*itemFree)(void *item)) ///< how to free hashed data; or NULL
-;
+		   void (*itemFree)(void *item) ///< how to free hashed data; or NULL
+    );
 
 /// Lookup key in table.
 void *psHashLookup(psHash *table,	///< table to lookup key in
-		   const char *key)	///< key to lookup
-;
+		   const char *key	///< key to lookup
+    );
 
 /// Remove key from table.
 void *psHashRemove(psHash *table,	///< table to lookup key in
-		   const char *key)	///< key to lookup
-;
+		   const char *key	///< key to lookup
+    );
 
 /* \} */ // End of DataGroup Functions
