Index: trunk/psLib/src/sysUtils/psAbort.c
===================================================================
--- trunk/psLib/src/sysUtils/psAbort.c	(revision 1137)
+++ trunk/psLib/src/sysUtils/psAbort.c	(revision 1138)
@@ -9,6 +9,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-27 02:17:53 $
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -65,5 +65,5 @@
 
     // Call logging function with PS_LOG_ABORT level
-    psVLogMsg(name, PS_LOG_ABORT, fmt, argPtr);
+    psLogMsgV(name, PS_LOG_ABORT, fmt, argPtr);
 
     // Clean up stack after variable arguement has been used
Index: trunk/psLib/src/sysUtils/psError.c
===================================================================
--- trunk/psLib/src/sysUtils/psError.c	(revision 1137)
+++ trunk/psLib/src/sysUtils/psError.c	(revision 1138)
@@ -10,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-21 21:14:41 $
+ *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -65,5 +65,5 @@
 
     // Call logging function with PS_LOG_ERROR level
-    psVLogMsg(name, PS_LOG_ERROR, fmt, argPtr);
+    psLogMsgV(name, PS_LOG_ERROR, fmt, argPtr);
 
     // Clean up stack after variable argument has been used
Index: trunk/psLib/src/sysUtils/psLogMsg.c
===================================================================
--- trunk/psLib/src/sysUtils/psLogMsg.c	(revision 1137)
+++ trunk/psLib/src/sysUtils/psLogMsg.c	(revision 1138)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-14 19:40:15 $
+ *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -191,5 +191,5 @@
  NULL.
  *****************************************************************************/
-void psVLogMsg(const char *name,
+void psLogMsgV(const char *name,
                int level,
                const char *fmt,
@@ -341,5 +341,5 @@
 
     va_start(ap, fmt);
-    psVLogMsg(name, level, fmt, ap);
+    psLogMsgV(name, level, fmt, ap);
     va_end(ap);
 }
Index: trunk/psLib/src/sysUtils/psLogMsg.h
===================================================================
--- trunk/psLib/src/sysUtils/psLogMsg.h	(revision 1137)
+++ trunk/psLib/src/sysUtils/psLogMsg.h	(revision 1138)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-12 05:50:01 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -63,5 +63,5 @@
 /// This procedure is functionally equivalent to psLogMsg(), except that
 /// it takes a va_list as the message parameter, not a printf-style string.
-void psVLogMsg(const char *name, ///< name of the log source
+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
Index: trunk/psLib/src/sysUtils/psTrace.d
===================================================================
--- trunk/psLib/src/sysUtils/psTrace.d	(revision 1137)
+++ trunk/psLib/src/sysUtils/psTrace.d	(revision 1138)
@@ -1,1 +1,1 @@
-psTrace.o psTrace.d : psTrace.c
+psTrace.o psTrace.d : psTrace.c psMemory.h psTrace.h psString.h psError.h
