Index: trunk/archive/pslib/include/psBitset.h
===================================================================
--- trunk/archive/pslib/include/psBitset.h	(revision 604)
+++ trunk/archive/pslib/include/psBitset.h	(revision 753)
@@ -19,10 +19,10 @@
 
 /** Constructor */
-psBitset *psBitsetAlloc(int n		///< Number of bits required
-    );
+psBitset *psBitsetAlloc(int n)		///< Number of bits required
+;
 
 /** Destructor */
-void psBitsetFree(psBitset *restrict myBits ///< bitset to destroy
-    );
+void psBitsetFree(psBitset *restrict myBits) ///< bitset to destroy
+;
 
 /************************************************************************************************************/
@@ -31,12 +31,12 @@
 psBitset *
 psBitsetSet(psBitset *restrict myBits,	///< Input bitset
-	     int bit			///< Bit to set
-    );
+	     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
-    );
+	      int bit)			///< Bit to check
+;
 
 /** apply the given operator to two bitsets */
@@ -45,12 +45,12 @@
 	    const psBitset *restrict inBits1, ///< Input bitset 1
 	    char *operator,		///< bitset operator (AND, OR, XOR)
-	    const psBitset *restrict inBits2 ///< Input bitset 2
-    );
+	    const psBitset *restrict inBits2) ///< Input bitset 2
+;
 
 /** Apply unary NOT to a bitset */
 psBitset *
 psBitsetNot(psBitset *out,		///< Output bitset, or NULL
-	    psBitset *in		///< Input bitset to be NOT-ed
-    );
+	    psBitset *in)		///< Input bitset to be NOT-ed
+;
 
 /* \} */ // End of MathGroup Functions
