Index: trunk/psLib/src/sys/psLogMsg.h
===================================================================
--- trunk/psLib/src/sys/psLogMsg.h	(revision 1406)
+++ trunk/psLib/src/sys/psLogMsg.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psLogMsg.h
  *  @brief Procedures for logging messages.
@@ -11,12 +12,12 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-06 22:34:05 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  */
 #if !defined(PS_LOG_MSG_H)
-#define PS_LOG_MSG_H
-#include <stdarg.h>
+#    define PS_LOG_MSG_H
+#    include <stdarg.h>
 
 /** @addtogroup LogTrace
@@ -29,7 +30,6 @@
 /// In future versions, this procedure will take a character string as an
 /// argument which can specify more general log destinations.
-int psLogSetDestination(const char* dest   ///< Specifies where to send messages.
+int psLogSetDestination(const char *dest        // /< Specifies where to send messages.
                        );
-
 
 /// This procedure sets the message level for future log messages.  Subsequent
@@ -38,7 +38,6 @@
 /// Ie. higher values set by this procedure will cause more log messages to
 /// be displayed.
-int psLogSetLevel(int level          ///< Specifies the system log level
+int psLogSetLevel(int level     // /< Specifies the system log level
                  );
-
 
 /// This procedure sets the log format for future log messages.  The argument
@@ -47,7 +46,6 @@
 /// Deleting a letter from the string will cause the associated information
 /// to not be logged.
-void psLogSetFormat(const char *fmt ///< Specifies the system log format
+void psLogSetFormat(const char *fmt     // /< Specifies the system log format
                    );
-
 
 /// This procedure logs a message to the destination set by a prior
@@ -55,16 +53,15 @@
 /// specified by a prior call to psLogSetLevel().  The message is specified
 /// with a printf-stype string an arguments.
-void psLogMsg(const char *name,     ///< name of the log source
-              int myLevel,          ///< severity level of this log message
-              const char *fmt, ...  ///< printf-style format command
+void psLogMsg(const char *name, // /< name of the log source
+              int myLevel,      // /< severity level of this log message
+              const char *fmt, ...      // /< printf-style format command
              );
-
 
 /// This procedure is functionally equivalent to psLogMsg(), except that
 /// it takes a va_list as the message parameter, not a printf-style string.
-void psLogMsgV(const char *name, ///< name of the log source
-               int myLevel,      ///< severity level of this log message
-               const char *fmt,  ///< printf-style format command
-               va_list ap        ///< varargs argument list
+void psLogMsgV(const char *name,        // /< name of the log source
+               int myLevel,     // /< severity level of this log message
+               const char *fmt, // /< printf-style format command
+               va_list ap       // /< varargs argument list
               );
 
@@ -74,5 +71,6 @@
     PS_LOG_ERROR,
     PS_LOG_WARN,
-    PS_LOG_INFO };
+    PS_LOG_INFO
+};
 
 ///< Destinations for log messages
@@ -80,5 +78,6 @@
     PS_LOG_NONE,
     PS_LOG_TO_STDERR,
-    PS_LOG_TO_STDOUT };
+    PS_LOG_TO_STDOUT
+};
 
 /// @}
