Index: /trunk/doc/pslib/ChangeLogSDRS.tex
===================================================================
--- /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4070)
+++ /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4071)
@@ -1,3 +1,3 @@
-%%% $Id: ChangeLogSDRS.tex,v 1.112 2005-06-01 21:04:33 jhoblitt Exp $
+%%% $Id: ChangeLogSDRS.tex,v 1.113 2005-06-01 21:08:49 jhoblitt Exp $
 
 \subsection{Changes from version 00 to version 01}
@@ -640,4 +640,5 @@
   \item rename functions/datatypes to abv. ``allocate'' as ``alloc''
   \item rename functions/datatypes to abv. ``memory'' as ``mem''
+  \item rename functions/datatypes to abv. ``function'' as ``func'' (not ``fcn'')
   \item remove ``my'' from function parameters names
   \item add \code{psComparePtrFunc} function pointer
Index: /trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- /trunk/doc/pslib/psLibSDRS.tex	(revision 4070)
+++ /trunk/doc/pslib/psLibSDRS.tex	(revision 4071)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.246 2005-06-01 21:04:33 jhoblitt Exp $
+%%% $Id: psLibSDRS.tex,v 1.247 2005-06-01 21:08:49 jhoblitt Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -333,5 +333,5 @@
     struct psMemBlock* previousBlock;   ///< previous block in allocation list
     struct psMemBlock* nextBlock;       ///< next block allocation list
-    psFreeFcn freeFcn;                  ///< deallocator.  If NULL, use generic deallocation.
+    psFreeFunc freeFunc;                 ///< deallocator.  If NULL, use generic deallocation.
     size_t  userMemorySize;             ///< the size of the user-portion of the memory block
     const psMemId id;                   ///< a unique ID for this allocation
@@ -344,5 +344,5 @@
 } psMemBlock;
 
-typedef void (*psFreeFcn)(void* ptr);
+typedef void (*psFreeFunc)(void* ptr);
 typedef unsigned long psMemId;
 typedef unsigned long psReferenceCount;
@@ -356,5 +356,5 @@
 list.
 
-The element \code{freeFcn} specifies the deallocator associated with a
+The element \code{freeFunc} specifies the deallocator associated with a
 specific block of memory.  If this element is \code{NULL}, the basic
 deallocator is used and the memory block must not be a rich data
@@ -481,6 +481,6 @@
 
 \begin{prototype}
-void psMemSetDeallocator(psPtr ptr, psFreeFcn freeFcn);     
-psFreeFcn psMemGetDeallocator(const psPtr ptr);     
+void psMemSetDeallocator(psPtr ptr, psFreeFunc freeFunc);     
+psFreeFunc psMemGetDeallocator(const psPtr ptr);     
 \end{prototype}
 
