Index: trunk/psLib/src/imageops/psImageStructManip.h
===================================================================
--- trunk/psLib/src/imageops/psImageStructManip.h	(revision 12998)
+++ trunk/psLib/src/imageops/psImageStructManip.h	(revision 15456)
@@ -5,6 +5,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2007-04-24 22:27:17 $
+*  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-11-05 23:56:33 $
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
 */
@@ -35,8 +35,20 @@
  *
  */
+#ifdef DOXYGEN
 psImage* psImageSubset(
     psImage* image,                    ///< Parent image.
     psRegion region                    ///< region of subimage
 );
+#else // ifdef DOXYGEN
+psImage* p_psImageSubset(
+    const char *file,                   ///< File of caller
+    unsigned int lineno,                ///< Line number of caller
+    const char *func,                   ///< Function name of caller
+    psImage* image,                    ///< Parent image.
+    psRegion region                    ///< region of subimage
+) PS_ATTR_MALLOC;
+#define psImageSubset(image, region) \
+      p_psImageSubset(__FILE__, __LINE__, __func__, image, region)
+#endif // ifdef DOXYGEN
 
 /** Makes a copy of the image view on the parent:
