Index: trunk/psLib/src/collections/psBitSet.c
===================================================================
--- trunk/psLib/src/collections/psBitSet.c	(revision 1842)
+++ trunk/psLib/src/collections/psBitSet.c	(revision 2204)
@@ -11,6 +11,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-21 23:17:52 $
+ *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-10-27 00:57:31 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -21,5 +21,4 @@
 #include <ctype.h>
 #include <math.h>
-#include <stdbool.h>
 
 #include "psBitSet.h"
@@ -48,5 +47,5 @@
  *  @return  char*: Pointer to byte in which bit is contained.
  */
-static char mask(int bit)
+static char mask(psS32 bit)
 {
     char mask = (char)0x01;
@@ -67,7 +66,7 @@
 }
 
-psBitSet* psBitSetAlloc(int n)
-{
-    int numBytes = 0;
+psBitSet* psBitSetAlloc(psS32 n)
+{
+    psS32 numBytes = 0;
     psBitSet* newObj = NULL;
 
@@ -95,5 +94,5 @@
 
 psBitSet* psBitSetSet(psBitSet* inBitSet,
-                      int bit)
+                      psS32 bit)
 {
     char *byte = NULL;
@@ -120,5 +119,5 @@
 
 psBitSet* psBitSetClear(psBitSet* inBitSet,
-                        int bit)
+                        psS32 bit)
 {
     char *byte = NULL;
@@ -144,6 +143,6 @@
 }
 
-bool psBitSetTest(const psBitSet* inBitSet,
-                  int bit)
+psBool psBitSetTest(const psBitSet* inBitSet,
+                    psS32 bit)
 {
     char *byte = NULL;
@@ -173,10 +172,10 @@
                      const psBitSet* restrict inBitSet2)
 {
-    int i = 0;
-    int n = 0;
+    psS32 i = 0;
+    psS32 n = 0;
     char* outBits = NULL;
     char* inBits1 = NULL;
     char* inBits2 = NULL;
-    int op = UNKNOWN_OP;
+    psS32 op = UNKNOWN_OP;
 
     if (inBitSet1 == NULL) {
@@ -198,8 +197,8 @@
 
     // make operator all caps
-    int tempStrLen = strlen(operator);
+    psS32 tempStrLen = strlen(operator);
     char* tempStr = psAlloc(tempStrLen+1);
 
-    for (int lcv=0;lcv<tempStrLen;lcv++) {
+    for (psS32 lcv=0;lcv<tempStrLen;lcv++) {
         tempStr[lcv] = (char)toupper(operator[lcv]);
     }
@@ -308,6 +307,6 @@
 char *psBitSetToString(const psBitSet* restrict inBitSet)
 {
-    int i = 0;
-    int numBits = inBitSet->n * 8;
+    psS32 i = 0;
+    psS32 numBits = inBitSet->n * 8;
     char *outString = psAlloc((size_t) numBits + 1);
 
