Index: trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- trunk/doc/pslib/psLibSDRS.tex	(revision 2809)
+++ trunk/doc/pslib/psLibSDRS.tex	(revision 2852)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.162 2004-12-23 20:03:24 price Exp $
+%%% $Id: psLibSDRS.tex,v 1.163 2004-12-30 02:17:06 price Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -2178,7 +2178,7 @@
     psPolynomialType type;              ///< Polynomial type
     int n;                              ///< Number of terms
-    float *restrict coeff;              ///< Coefficients
-    float *restrict coeffErr;           ///< Error in coefficients
-    char *restrict mask;                ///< Coefficient mask
+    float *coeff;                       ///< Coefficients
+    float *coeffErr;                    ///< Error in coefficients
+    char *mask;                         ///< Coefficient mask
 } psPolynomial1D;
 \end{verbatim}
@@ -2189,7 +2189,7 @@
     psPolynomialType type;              ///< Polynomial type
     int nX, nY;                         ///< Number of terms in x and y
-    float *restrict *restrict coeff;    ///< Coefficients
-    float *restrict *restrict coeffErr; ///< Error in coefficients
-    char *restrict *restrict mask;      ///< Coefficients mask
+    float **coeff;                      ///< Coefficients
+    float **coeffErr;                   ///< Error in coefficients
+    char **mask;                        ///< Coefficients mask
 } psPolynomial2D;
 \end{verbatim}
@@ -2213,7 +2213,7 @@
     psPolynomialType type;              ///< Polynomial type
     int n;                              ///< Number of terms
-    double *restrict coeff;             ///< Coefficients
-    double *restrict coeffErr;          ///< Error in coefficients
-    char *restrict mask;                ///< Coefficient mask
+    double *coeff;                      ///< Coefficients
+    double *coeffErr;                   ///< Error in coefficients
+    char *mask;                         ///< Coefficient mask
 } psDPolynomial1D;
 \end{verbatim}
@@ -2224,7 +2224,7 @@
     psPolynomialType type;              ///< Polynomial type
     int nX, nY;                         ///< Number of terms in x and y
-    double *restrict *restrict coeff;   ///< Coefficients
-    double *restrict *restrict coeffErr; ///< Error in coefficients
-    char *restrict *restrict mask;      ///< Coefficients mask
+    double **coeff;                     ///< Coefficients
+    double **coeffErr;                  ///< Error in coefficients
+    char **mask;                        ///< Coefficients mask
 } psDPolynomial2D;
 \end{verbatim}
@@ -2244,5 +2244,5 @@
 To evaluate the polynomials at specific coordinates, we define:
 \begin{verbatim}
-double psDPolynomial2DEval(const psDPolynomial2D *restrict myPoly, double x, double y);
+double psDPolynomial2DEval(const psDPolynomial2D *myPoly, double x, double y);
 \end{verbatim}
 
@@ -2715,5 +2715,5 @@
 \begin{verbatim}
 psImage *psImageRebin(psImage *out, const psImage *in, 
-                      const psImage *restrict mask, 
+                      const psImage *mask, 
                       unsigned int maskVal,
                       int scale, const psStats *stats);
