Index: trunk/psLib/src/collections/psBitSet.h
===================================================================
--- trunk/psLib/src/collections/psBitSet.h	(revision 1807)
+++ trunk/psLib/src/collections/psBitSet.h	(revision 2204)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-14 20:01:52 $
+ *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-10-27 00:57:31 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -20,4 +20,6 @@
 #ifndef PSBITSET_H
 #define PSBITSET_H
+
+#include "psType.h"
 
 /// @addtogroup BitSet
@@ -35,5 +37,5 @@
 typedef struct
 {
-    int n;                             ///< Number of bytes in the array
+    psS32 n;                             ///< Number of bytes in the array
     char *bits;                        ///< Aray of bytes holding bits
 }
@@ -54,5 +56,5 @@
 /*@null@*/
 psBitSet* psBitSetAlloc(
-    int n                              ///< Number of bits in psBitSet array
+    psS32 n                              ///< Number of bits in psBitSet array
 );
 
@@ -68,5 +70,5 @@
     /* @returned@ */
     psBitSet* restrict inMask,         ///< Pointer to psBitSet to be set.
-    int bit                            ///< Bit to be set.
+    psS32 bit                            ///< Bit to be set.
 );
 
@@ -82,5 +84,5 @@
     /* @returned@ */
     psBitSet* restrict inMask,         ///< Pointer to psBitSet to be cleared.
-    int bit                            ///< Bit to be cleared.
+    psS32 bit                            ///< Bit to be cleared.
 );
 
@@ -95,7 +97,7 @@
  */
 
-bool psBitSetTest(
+psBool psBitSetTest(
     const psBitSet* restrict inMask,   ///< Pointer psBitSet to be tested.
-    int bit                            ///< Bit to be tested.
+    psS32 bit                            ///< Bit to be tested.
 );
 
