Index: trunk/psLib/src/sysUtils/psTrace.h
===================================================================
--- trunk/psLib/src/sysUtils/psTrace.h	(revision 4330)
+++ trunk/psLib/src/sysUtils/psTrace.h	(revision 4409)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-21 03:01:37 $
+ *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-28 20:17:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -60,14 +60,17 @@
 
 #ifdef DOXYGEN
-void psTrace(const char *facil,        ///< facilty of interest
-             psS32 myLevel,            ///< desired trace level
-             ...)                      ///< trace message arguments
-;
+void psTrace(
+    const char *facil,                 ///< facilty of interest
+    int level,                         ///< desired trace level
+    ...                                ///< trace message arguments
+);
+
 #else
 /// Send a trace message
-void p_psTrace(const char *facil,      ///< facilty of interest
-               psS32 myLevel,          ///< desired trace level
-               ...)                    ///< trace message arguments
-;
+void p_psTrace(
+    const char *facil,                 ///< facilty of interest
+    psS32 myLevel,                     ///< desired trace level
+    ...                                ///< trace message arguments
+);
 
 #ifndef SWIG
@@ -78,7 +81,8 @@
 
 /// Set trace level
-psBool psTraceSetLevel(const char *facil,     ///< facilty of interest
-                       psS32 level)     ///< desired trace level
-;
+psBool psTraceSetLevel(
+    const char *facil,                 ///< facilty of interest
+    int level                          ///< desired trace level
+);
 
 /// Get the trace level
@@ -94,5 +98,7 @@
 
 /// Set the destination of future trace messages.
-void psTraceSetDestination(FILE * fp);
+void psTraceSetDestination(
+    FILE * fp                          ///<
+);
 
 /// Get the current destination for trace messages.
