Index: trunk/psLib/src/sysUtils/psMemory.c
===================================================================
--- trunk/psLib/src/sysUtils/psMemory.c	(revision 4293)
+++ trunk/psLib/src/sysUtils/psMemory.c	(revision 4298)
@@ -8,6 +8,6 @@
 *  @author Robert Lupton, Princeton University
 *
-*  @version $Revision: 1.52 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-06-08 23:40:45 $
+*  @version $Revision: 1.53 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-17 21:42:02 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -670,5 +670,5 @@
 }
 
-psBool p_psMemGetPersistent(psPtr vptr)
+bool p_psMemGetPersistent(psPtr vptr)
 {
     if (vptr == NULL) {
@@ -685,5 +685,5 @@
 }
 
-void p_psMemSetPersistent(psPtr vptr,psBool value)
+void p_psMemSetPersistent(psPtr vptr, bool value)
 {
     if (vptr == NULL) {
Index: trunk/psLib/src/sysUtils/psMemory.h
===================================================================
--- trunk/psLib/src/sysUtils/psMemory.h	(revision 4293)
+++ trunk/psLib/src/sysUtils/psMemory.h	(revision 4298)
@@ -12,6 +12,6 @@
  *  @ingroup MemoryManagement
  *
- *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-17 21:42:02 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -180,5 +180,5 @@
 void p_psMemSetPersistent(
     psPtr ptr,                         ///< the memory block to operate on
-    psBool value                         ///< true if memory is persistent, otherwise false
+    bool value                         ///< true if memory is persistent, otherwise false
 );
 
@@ -192,5 +192,5 @@
  *  @return psBool    true if memory is marked persistent, otherwise false.
  */
-psBool p_psMemGetPersistent(
+bool p_psMemGetPersistent(
     psPtr ptr                          ///< the memory block to check.
 );
