Index: trunk/archive/pslib/include/psMemory.h
===================================================================
--- trunk/archive/pslib/include/psMemory.h	(revision 260)
+++ trunk/archive/pslib/include/psMemory.h	(revision 290)
@@ -40,6 +40,6 @@
 void *p_psAlloc(size_t size,		//!< Size required
 		const char *file,	//!< File of call
-		int lineno)		//!< Line number of call
-;
+		int lineno		//!< Line number of call
+		);
 
 /// Memory re-allocation.  Underlying private function called by macro psRealloc. 
@@ -47,62 +47,61 @@
 		  size_t size,		//!< Size required
 		  const char *file,	//!< File of call
-		  int lineno)		//!< Line number of call
-;
+		  int lineno		//!< Line number of call
+		  );
 
 /// Free memory.  Underlying private function called by macro psFree. 
 void p_psFree(void *ptr,		//!< Pointer to free
 	      const char *file,		//!< File of call
-	      int lineno)		//!< Line number of call
-;
+	      int lineno		//!< Line number of call
+	      );
 
 /// Check for memory leaks 
 int psMemCheckLeaks(int id0,		//!< don't list blocks with id < id0
 		    psMemBlock ***arr,	//!< pointer to array of pointers to leaked blocks, or NULL
-		    FILE *fd)		//!< print list of leaks to fd (or NULL)
-;
+		    FILE *fd		//!< print list of leaks to fd (or NULL)
+		    );
 
 /// Check for memory corruption 
-int psMemCheckCorruption(int abort_on_error) //!< Abort on detecting corruption?
-;
+int psMemCheckCorruption(int abort_on_error //!< Abort on detecting corruption?
+			 );
 
 /// Return reference counter 
-int psMemGetRefCounter(void *vptr)	//!< Pointer to get refCounter for
-;
+int psMemGetRefCounter(void *vptr	//!< Pointer to get refCounter for
+		       );
 
 /// Increment reference counter and return the pointer 
-void *psMemIncrRefCounter(void *vptr)	//!< Pointer to increment refCounter, and return
-;
+void *psMemIncrRefCounter(void *vptr	//!< Pointer to increment refCounter, and return
+			  );
 
 /// Decrement reference counter and return the pointer 
-void *psMemDecrRefCounter(void *vptr)	//!< Pointer to decrement refCounter, and return
-;
+void *psMemDecrRefCounter(void *vptr	//!< Pointer to decrement refCounter, and return
+			  );
 
 /// Set callback for problems 
-psMemProblemCallback psMemProblemSetCB(psMemProblemCallback func) //!< Function to run
-;
+psMemProblemCallback psMemProblemSetCB(psMemProblemCallback func //!< Function to run
+				       );
 
 /// Set callback for out-of-memory 
-psMemExhaustedCallback psMemExhaustedSetCB(psMemExhaustedCallback func) //!< Function to run
-;									
+psMemExhaustedCallback psMemExhaustedSetCB(psMemExhaustedCallback func //!< Function to run
+					   );
 
 /// Set call back for when a particular memory block is allocated 
-psMemCallback psMemAllocateSetCB(psMemCallback func)
-;
+psMemCallback psMemAllocateSetCB(psMemCallback func //!< Function to run
+				 );
 
 /// Set call back for when a particular memory block is freed 
-psMemCallback psMemFreeSetCB(psMemCallback func)
-;
+psMemCallback psMemFreeSetCB(psMemCallback func
+			     );
 
 /// get next memory ID 
-int psMemGetId(void)
-;
+int psMemGetId(void);
 
 /// set p_psMemAllocateID to id 
-long psMemSetAllocateID(long id)
-;
+long psMemSetAllocateID(long id		//!< ID to set
+			);
 
 /// set p_psMemFreeID to id 
-long psMemSetFreeID(long id)
-;
+long psMemSetFreeID(long id		//!< ID to set
+		    );
 
 /* \} */ // End of SystemGroup Functions
