Index: trunk/psLib/src/collections/psArray.h
===================================================================
--- trunk/psLib/src/collections/psArray.h	(revision 1920)
+++ trunk/psLib/src/collections/psArray.h	(revision 2204)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-28 23:26:48 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-10-27 00:57:31 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -20,6 +20,4 @@
 #ifndef PS_ARRAY_H
 #define PS_ARRAY_H
-
-#include<stdbool.h>
 
 #include "psType.h"
@@ -36,7 +34,7 @@
 typedef struct
 {
-    unsigned int nalloc;        ///< Total number of elements available.
-    unsigned int n;             ///< Number of elements in use.
-    psPTR* data;                ///< An Array of pointer elements
+    psU32 nalloc;        ///< Total number of elements available.
+    psU32 n;             ///< Number of elements in use.
+    psPtr* data;                ///< An Array of pointer elements
 }
 psArray;
@@ -57,5 +55,5 @@
  */
 psArray* psArrayAlloc(
-    unsigned int nalloc                ///< Total number of elements to make available.
+    psU32 nalloc                ///< Total number of elements to make available.
 );
 
@@ -70,5 +68,5 @@
 psArray* psArrayRealloc(
     psArray* restrict psArr,           ///< array to reallocate.
-    unsigned int nalloc                ///< Total number of elements to make available.
+    psU32 nalloc                ///< Total number of elements to make available.
 );
 
@@ -81,7 +79,7 @@
  *
  */
-bool psArrayRemove(
+psBool psArrayRemove(
     psArray* psArr,                    ///< array to operate on
-    psPTR data                         ///< the data pointer to remove from psArray
+    psPtr data                         ///< the data pointer to remove from psArray
 );
 
