Index: trunk/psLib/src/collections/psBitSet.h
===================================================================
--- trunk/psLib/src/collections/psBitSet.h	(revision 4162)
+++ trunk/psLib/src/collections/psBitSet.h	(revision 4312)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-18 00:53:32 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -56,5 +56,5 @@
 /*@null@*/
 psBitSet* psBitSetAlloc(
-    psS32 n                            ///< Number of bits in psBitSet array
+    long nalloc                            ///< Number of bits in psBitSet array
 );
 
@@ -69,6 +69,6 @@
 psBitSet* psBitSetSet(
     /* @returned@ */
-    psBitSet* inMask,                  ///< Pointer to psBitSet to be set.
-    psS32 bit                          ///< Bit to be set.
+    psBitSet* bitSet,                  ///< Pointer to psBitSet to be set.
+    long bit                          ///< Bit to be set.
 );
 
@@ -83,6 +83,6 @@
 psBitSet* psBitSetClear(
     /* @returned@ */
-    psBitSet* inMask,                  ///< Pointer to psBitSet to be cleared.
-    psS32 bit                          ///< Bit to be cleared.
+    psBitSet* bitSet,                  ///< Pointer to psBitSet to be cleared.
+    long bit                           ///< Bit to be cleared.
 );
 
@@ -97,7 +97,7 @@
  */
 
-psBool psBitSetTest(
-    const psBitSet* inMask,            ///< Pointer psBitSet to be tested.
-    psS32 bit                          ///< Bit to be tested.
+bool psBitSetTest(
+    const psBitSet* bitSet,            ///< Pointer psBitSet to be tested.
+    long bit                           ///< Bit to be tested.
 );
 
@@ -111,8 +111,8 @@
 psBitSet* psBitSetOp(
     /* @returned@ */
-    psBitSet* outMask,                 ///< Resulting psBitSet from binary operation
-    const psBitSet* inMask1,           ///< First psBitSet on which to operate
-    char *operator,                    ///< Bit operation
-    const psBitSet* inMask2            ///< First psBitSet on which to operate
+    psBitSet* outBitSet,                 ///< Resulting psBitSet from binary operation
+    const psBitSet* inBitSet1,           ///< First psBitSet on which to operate
+    const char *operator,                    ///< Bit operation
+    const psBitSet* inBitSet2            ///< First psBitSet on which to operate
 );
 
