Index: /trunk/archive/pslib/include/psDlist.h
===================================================================
--- /trunk/archive/pslib/include/psDlist.h	(revision 290)
+++ /trunk/archive/pslib/include/psDlist.h	(revision 291)
@@ -37,11 +37,11 @@
 
 /** Constructor */
-psDlist *psDlistAlloc(void *data)	//!< initial data item; may be NULL
-;
+psDlist *psDlistAlloc(void *data	//!< initial data item; may be NULL
+		      );
 
 /** Destructor */
 void psDlistFree(psDlist *list,		//!< list to destroy
-		void (*elemFree)(void *)) //!< destructor for data on list
-;
+		void (*elemFree)(void *) //!< destructor for data on list
+		 );
 
 /**** List maintainence functions ****/
@@ -50,22 +50,22 @@
 psDlist *psDlistAdd(psDlist *list,	//!< list to add to (may be NULL)
 		    void *data,		//!< data item to add
-		    int where)		//!< index, PS_DLIST_HEAD, or PS_DLIST_TAIL
-;
+		    int where		//!< index, PS_DLIST_HEAD, or PS_DLIST_TAIL
+		    );
 
 /** Append to a list */
 psDlist *psDlistAppend(psDlist *list,	//!< list to append to (may be NULL)
-		       void *data)	//!< data item to add
-;
+		       void *data	//!< data item to add
+		       );
 
 /** Remove from a list */
 void *psDlistRemove(psDlist *list,	//!< list to remove element from
 		    void *data,		//!< data item to remove
-		    int which)		//!< index of item, or PS_DLIST_UNKNOWN, or PS_DLIST_NEXT, or
-;					//!< PS_DLIST_PREV
-
+		    int which		//!< index of item, or PS_DLIST_UNKNOWN, or PS_DLIST_NEXT, or
+					//!< PS_DLIST_PREV
+		    );
 /** Retrieve from a list */
 void *psDlistGet(const psDlist *list,	//!< list to retrieve element from
-		 int which)		//!< index of item, or PS_DLIST_NEXT, or PS_DLIST_PREV
-;
+		 int which		//!< index of item, or PS_DLIST_NEXT, or PS_DLIST_PREV
+		 );
 
 /**** convenience functions to use psDlistGet as an iterator ******/
@@ -74,24 +74,27 @@
 void psDlistSetIterator(psDlist *list,	//!< list to retrieve element from
 			int where,	//!< index, PS_DLIST_HEAD, or PS_DLIST_TAIL
-			int which)	//!< index of item, or PS_DLIST_UNKNOWN, or PS_DLIST_NEXT, or
-;					//!< PS_DLIST_PREV
+			int which	//!< index of item, or PS_DLIST_UNKNOWN, or PS_DLIST_NEXT, or
+					//!< PS_DLIST_PREV
+			);
 
 /** Get next element */
 void *psDlistGetNext(psDlist *list,	//!< list to retrieve element from
-		     int which)		//!< index of item, or PS_DLIST_UNKNOWN, or PS_DLIST_NEXT, or
-;					//!< PS_DLIST_PREV
+		     int which		//!< index of item, or PS_DLIST_UNKNOWN, or PS_DLIST_NEXT, or
+					//!< PS_DLIST_PREV
+		     );
 
 /** Get previous element */
 void *psDlistGetPrev(psDlist *list,	//!< list to retrieve element from
-		     int which)		//!< index of item, or PS_DLIST_UNKNOWN, or PS_DLIST_NEXT, or
-;					//!< PS_DLIST_PREV
+		     int which		//!< index of item, or PS_DLIST_UNKNOWN, or PS_DLIST_NEXT, or
+					//!< PS_DLIST_PREV
+		     );
 
 /** Convert doubly-linked list to an array */
-psVoidPtrArray *psDlistToArray(psDlist *dlist) //!< List to convert
-;
+psVoidPtrArray *psDlistToArray(psDlist *dlist //!< List to convert
+			       );
 
 /** Convert array to a doubly-linked list */
-psDlist *psArrayToDlist(psVoidPtrArray *arr) //!< Array to convert
-;
+psDlist *psArrayToDlist(psVoidPtrArray *arr //!< Array to convert
+			);
 
 /* \} */ // End of DataGroup Functions
Index: /trunk/archive/pslib/include/psHash.h
===================================================================
--- /trunk/archive/pslib/include/psHash.h	(revision 290)
+++ /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
Index: /trunk/archive/pslib/include/psMisc.h
===================================================================
--- /trunk/archive/pslib/include/psMisc.h	(revision 290)
+++ /trunk/archive/pslib/include/psMisc.h	(revision 291)
@@ -15,20 +15,21 @@
 void psAbort(const char *name,		///< Category of code that caused the abort
 	     const char *fmt,		///< Format
-	     ...)			///< Extra arguments to use format
-;
+	     ...			///< Extra arguments to use format
+	     );
 
 /// Prints an error message and doesn't abort
 void psError(const char *name,		///< Category of code that caused the abort
 	     const char *fmt,		///< Format
-	     ...)			///< Extra arguments to use format
-;
+	     ...			///< Extra arguments to use format
+    );
 
 /// Allocates and returns a copy of a string
-char *psStringCopy(const char *str)	///< string to copy
-;
+char *psStringCopy(const char *str	///< string to copy
+    );
 
 /// Allocates nChar and returns a copy of the string or segment
-char *psStringNCopy(const char *str, int nChar)	///< string to copy
-;
+char *psStringNCopy(const char *str,	///< string to copy
+		    int nChar		//!< Number of characters (including \0 )
+    );
 
 /* \} */ // End of SystemGroup Functions
