Index: trunk/archive/pslib/include/psFunctions.h
===================================================================
--- trunk/archive/pslib/include/psFunctions.h	(revision 257)
+++ trunk/archive/pslib/include/psFunctions.h	(revision 285)
@@ -55,24 +55,30 @@
  */
 
-/** Constructors */
-psPolynomial1D *psPolynomial1DAlloc(int n //!< Number of terms
-				    );
-psPolynomial2D *psPolynomial2DAlloc(int nX, int nY //!< Number of terms in x and y
-				    );
-psPolynomial3D *psPolynomial3DAlloc(int nX, int nY, int nZ //!< Number of terms in x, y and z
-				    );
-psPolynomial4D *psPolynomial4DAlloc(int nW, int nX, int nY, int nZ //!< Number of terms in w, x, y and z
-				    );
-
-/** Destructors */
-void psPolynomial1DFree(psPolynomial1D *restrict myPoly //!< Polynomial to destroy
-			);
-void psPolynomial2DFree(psPolynomial2D *restrict myPoly //!< Polynomial to destroy
-			);
-void psPolynomial3DFree(psPolynomial3D *restrict myPoly //!< Polynomial to destroy
-			);
-void psPolynomial4DFree(psPolynomial4D *restrict myPoly //!< Polynomial to destroy
-			);
-
+/** Constructor */
+psPolynomial1D *psPolynomial1DAlloc(int n) //!< Number of terms
+				    ;
+/** Constructor */
+psPolynomial2D *psPolynomial2DAlloc(int nX, int nY) //!< Number of terms in x and y
+				    ;
+/** Constructor */
+psPolynomial3D *psPolynomial3DAlloc(int nX, int nY, int nZ) //!< Number of terms in x, y and z
+				    ;
+/** Constructor */
+psPolynomial4D *psPolynomial4DAlloc(int nW, int nX, int nY, int nZ) //!< Number of terms in w, x, y and z
+				    ;
+
+/** Destructor */
+void psPolynomial1DFree(psPolynomial1D *restrict myPoly) //!< Polynomial to destroy
+;
+     
+/** Destructor */
+void psPolynomial2DFree(psPolynomial2D *restrict myPoly) //!< Polynomial to destroy
+			;
+/** Destructor */
+void psPolynomial3DFree(psPolynomial3D *restrict myPoly) //!< Polynomial to destroy
+			;
+/** Destructor */
+void psPolynomial4DFree(psPolynomial4D *restrict myPoly) //!< Polynomial to destroy
+			;
 
 /** Evaluate 1D polynomial */
@@ -149,22 +155,28 @@
  */
 
-/** Constructors */
+/** Constructor */
 psDPolynomial1D *psDPolynomial1DAlloc(int n //!< Number of terms
     );
+/** Constructor */
 psDPolynomial2D *psDPolynomial2DAlloc(int nX, int nY //!< Number of terms in x and y
     );
+/** Constructor */
 psDPolynomial3D *psDPolynomial3DAlloc(int nX, int nY, int nZ //!< Number of terms in x, y and z
     );
+/** Constructor */
 psDPolynomial4D *psDPolynomial4DAlloc(int nW, int nX, int nY, int nZ //!< Number of terms in w, x, y and z
     );
 
 
-/** Destructors */
+/** Destructor */
 void psDPolynomial1DFree(psDPolynomial1D *restrict myPoly //!< Polynomial to destroy
     );
+/** Destructor */
 void psDPolynomial2DFree(psDPolynomial2D *restrict myPoly //!< Polynomial to destroy
     );
+/** Destructor */
 void psDPolynomial3DFree(psDPolynomial3D *restrict myPoly //!< Polynomial to destroy
     );
+/** Destructor */
 void psDPolynomial4DFree(psDPolynomial4D *restrict myPoly //!< Polynomial to destroy
     );
