Index: trunk/archive/pslib/include/psBitset.h
===================================================================
--- trunk/archive/pslib/include/psBitset.h	(revision 753)
+++ trunk/archive/pslib/include/psBitset.h	(revision 1581)
@@ -22,20 +22,16 @@
 ;
 
-/** Destructor */
-void psBitsetFree(psBitset *restrict myBits) ///< bitset to destroy
-;
-
 /************************************************************************************************************/
 
 /** Set a bitset */
 psBitset *
-psBitsetSet(psBitset *restrict myBits,	///< Input bitset
-	     int bit)			///< Bit to set
+psBitsetSet(psBitset *myBits,		///< Input bitset
+	    int bit)			///< Bit to set
 ;
 
 /** Check a bitset.  Returns true or false */
-int
-psBitsetTest(const psBitset *restrict checkBits, ///< bitset to check
-	      int bit)			///< Bit to check
+bool
+psBitsetTest(const psBitset *checkBits, ///< bitset to check
+	     int bit)			///< Bit to check
 ;
 
@@ -43,7 +39,7 @@
 psBitset *
 psBitsetOp(psBitset *outBits,		///< Output bitset or NULL
-	    const psBitset *restrict inBits1, ///< Input bitset 1
-	    char *operator,		///< bitset operator (AND, OR, XOR)
-	    const psBitset *restrict inBits2) ///< Input bitset 2
+	   const psBitset *inBits1,	///< Input bitset 1
+	   char *operator,		///< bitset operator (AND, OR, XOR)
+	   const psBitset *inBits2)	///< Input bitset 2
 ;
 
