Index: trunk/psLib/src/sys/psMemory.h
===================================================================
--- trunk/psLib/src/sys/psMemory.h	(revision 430)
+++ trunk/psLib/src/sys/psMemory.h	(revision 432)
@@ -14,6 +14,6 @@
  *  @author Robert Lupton, Princeton University
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-15 21:22:09 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-04-16 02:18:57 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -79,40 +79,49 @@
 
 /// 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)
-;
+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)
+);
 
 /// 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 psMemProblemCallbackSet(psMemProblemCallback func) ///< Function to run
-;
+psMemProblemCallback psMemProblemCallbackSet(
+        psMemProblemCallback func       ///< Function to run
+);
 
 /// Set callback for out-of-memory
-psMemExhaustedCallback psMemExhaustedCallbackSet(psMemExhaustedCallback func) ///< Function to run
-;
+psMemExhaustedCallback psMemExhaustedCallbackSet(
+        psMemExhaustedCallback func     ///< Function to run
+);
 
 /// Set call back for when a particular memory block is allocated
-psMemCallback psMemAllocateCallbackSet(psMemAllocateCallback func) ///< Function to run
-;
+psMemAllocateCallback psMemAllocateCallbackSet(
+        psMemAllocateCallback func      ///< Function to run
+);
 
 /// Set call back for when a particular memory block is freed
-psMemCallback psMemFreeCallbackSet(psMemFreeCallback func) ///< Function to run
-;
+psMemFreeCallback psMemFreeCallbackSet(
+        psMemFreeCallback func          ///< Function to run
+);
 
 /// get next memory ID
@@ -121,10 +130,12 @@
 
 /// set p_psMemAllocateID to id
-long psMemAllocateIDSet(long id) ///< ID to set
-;
+long psMemAllocateIDSet(
+        long id                         ///< ID to set
+);
 
 /// set p_psMemFreeID to id
-long psMemFreeIDSet(long id)  ///< ID to set
-;
+long psMemFreeIDSet(
+        long id                         ///< ID to set
+);
 
 //@} End of public Functions
