Index: trunk/psModules/src/imsubtract/pmSubtractBias.c
===================================================================
--- trunk/psModules/src/imsubtract/pmSubtractBias.c	(revision 6325)
+++ trunk/psModules/src/imsubtract/pmSubtractBias.c	(revision 6506)
@@ -6,6 +6,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-02-06 21:03:25 $
+ *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-03-02 23:16:05 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -456,9 +456,12 @@
 
 /******************************************************************************
-psListLength(list): determine the length of a psList.
+my_psListLength(list): determine the length of a psList.
  
 XXX: Put this elsewhere.
- *****************************************************************************/
-static psS32 psListLength(
+ 
+XXX: psList.h now has a version of this function.  Use that instead.
+ *****************************************************************************/
+
+static psS32 my_psListLength(
     psList *list)
 {
@@ -486,5 +489,5 @@
 
     // Allocate a psVector with one element per overscan image.
-    psS32 numOverscanImages = psListLength(bias);
+    psS32 numOverscanImages = my_psListLength(bias);
     psVector *statsAll = psVectorAlloc(numOverscanImages, PS_TYPE_F32);
     psListElem *tmpOverscan = (psListElem *) bias->head;
@@ -653,5 +656,5 @@
     // vector to a single final column vector.
     //
-    psS32 numOverscanImages = psListLength(bias);
+    psS32 numOverscanImages = my_psListLength(bias);
     psVector **overscanVectors = (psVector **) psAlloc(numOverscanImages * sizeof(psVector *));
     for (psS32 i = 0 ; i < numOverscanImages ; i++) {
