Index: trunk/psLib/src/sys/psAssert.h
===================================================================
--- trunk/psLib/src/sys/psAssert.h	(revision 14960)
+++ trunk/psLib/src/sys/psAssert.h	(revision 14982)
@@ -9,5 +9,4 @@
 #include <math.h>
 
-#include "psMemory.h"
 #include "psError.h"
 #include "psLogMsg.h"
@@ -18,15 +17,4 @@
     psError(PS_ERR_PROGRAMMING, false, "Error: %s is not true.", #VAR); \
     return(RVAL); \
-}
-
-// Ensure this is a psLib pointer
-#define PS_ASSERT_PTR(PTR, RVAL) \
-{ \
-    if (PTR && (!psMemIsAlloced(PTR))) { \
-        psError(PS_ERR_MEMORY_CORRUPTION, false, \
-            "Error: Pointer %p is corrupted or not on the PS memory system.", \
-            PTR); \
-        return RVAL; \
-    } \
 }
 
Index: trunk/psLib/src/sys/psMemory.h
===================================================================
--- trunk/psLib/src/sys/psMemory.h	(revision 14960)
+++ trunk/psLib/src/sys/psMemory.h	(revision 14982)
@@ -15,6 +15,6 @@
  *  @ingroup MemoryManagement
  *
- *  @version $Revision: 1.71 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-08-27 23:16:17 $
+ *  @version $Revision: 1.72 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-09-22 03:01:08 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -637,4 +637,15 @@
 
 
+// Ensure this is a psLib pointer
+#define PS_ASSERT_PTR(PTR, RVAL) \
+{ \
+    if (PTR && (!psMemIsAlloced(PTR))) { \
+        psError(PS_ERR_MEMORY_CORRUPTION, false, \
+            "Error: Pointer %p is corrupted or not on the PS memory system.", \
+            PTR); \
+        return RVAL; \
+    } \
+}
+
 /// @} end of SysUtils
 
