Index: trunk/archive/pslib/include/psMisc.h
===================================================================
--- trunk/archive/pslib/include/psMisc.h	(revision 266)
+++ 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
