Index: trunk/psLib/src/sysUtils/psMemory.h
===================================================================
--- trunk/psLib/src/sysUtils/psMemory.h	(revision 1426)
+++ trunk/psLib/src/sysUtils/psMemory.h	(revision 1440)
@@ -15,6 +15,6 @@
  *  @ingroup MemoryManagement
  *
- *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 22:44:25 $
+ *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 23:34:58 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -64,6 +64,6 @@
 {
     const void *startblock;     ///< initialised to p_psMEMMAGIC
-    struct psMemBlock *previousBlock;   ///< previous block in allocation list
-    struct psMemBlock *nextBlock;       ///< next block allocation list
+    struct psMemBlock* previousBlock;   ///< previous block in allocation list
+    struct psMemBlock* nextBlock;       ///< next block allocation list
     psFreeFcn freeFcn;          ///< deallocator.  If NULL, use generic deallocation.
     size_t userMemorySize;      ///< the size of the user-portion of the memory block
@@ -82,5 +82,5 @@
  *  @ingroup memCallback
  */
-typedef psMemoryId(*psMemAllocateCallback) (const psMemBlock * ptr      ///< the psMemBlock just allocated
+typedef psMemoryId(*psMemAllocateCallback) (const psMemBlock* ptr      ///< the psMemBlock just allocated
                                            );
 
@@ -90,5 +90,5 @@
  *  @ingroup memCallback
  */
-typedef psMemoryId(*psMemFreeCallback) (const psMemBlock * ptr  ///< the psMemBlock being freed
+typedef psMemoryId(*psMemFreeCallback) (const psMemBlock* ptr  ///< the psMemBlock being freed
                                        );
 
@@ -100,5 +100,5 @@
  *  @ingroup memCallback
  */
-typedef void (*psMemProblemCallback) (const psMemBlock * ptr,   ///< the pointer to the problematic memory
+typedef void (*psMemProblemCallback) (const psMemBlock* ptr,   ///< the pointer to the problematic memory
                                       // block.
                                       const char *file, ///< the file in which the problem originated
@@ -195,5 +195,5 @@
  */
 int psMemCheckLeaks(psMemoryId id0,     ///< don't list blocks with id < id0
-                    psMemBlock *** arr, ///< pointer to array of pointers to leaked blocks, or NULL
+                    psMemBlock* ** arr, ///< pointer to array of pointers to leaked blocks, or NULL
                     FILE * fd   ///< print list of leaks to fd (or NULL)
                    );
