Index: trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- trunk/doc/pslib/psLibSDRS.tex	(revision 4064)
+++ trunk/doc/pslib/psLibSDRS.tex	(revision 4065)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.241 2005-06-01 04:10:25 jhoblitt Exp $
+%%% $Id: psLibSDRS.tex,v 1.242 2005-06-01 04:19:31 jhoblitt Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -1360,6 +1360,6 @@
 typedef struct {
     psType type;                        ///< vector data type and dimension
-    int n;                              ///< size of vector
-    const int nalloc;                   ///< allocated data block
+    unsigned long int n;                ///< size of vector
+    const unsigned long int nalloc;     ///< allocated data block
     union {
         psS8  *S8;                      ///< Pointers to byte data
@@ -1390,7 +1390,7 @@
 %
 \begin{prototype}
-psVector *psVectorAlloc(psU32 nalloc, psElemType type);
-psVector *psVectorRealloc(psVector *vector, psU32 nalloc);
-psVector *psVectorRecycle(psVector *vector, psU32 nalloc, psElemType type);
+psVector *psVectorAlloc(unsigned long int nalloc, psElemType type);
+psVector *psVectorRealloc(psVector *vector, unsigned long int nalloc);
+psVector *psVectorRecycle(psVector *vector, unsigned long int nalloc, psElemType type);
 \end{prototype}
 %
@@ -1414,5 +1414,5 @@
 
 \begin{prototype}
-psVector *psVectorExtend(psVector *vector, int delta, int nExtend);
+psVector *psVectorExtend(psVector *vector, unsigned long int delta, unsigned long int nExtend);
 \end{prototype}
 
