Index: trunk/psLib/test/dataManip/tst_psFunc01.c
===================================================================
--- trunk/psLib/test/dataManip/tst_psFunc01.c	(revision 2392)
+++ trunk/psLib/test/dataManip/tst_psFunc01.c	(revision 2436)
@@ -3,5 +3,5 @@
     specified Gaussian at some X.
  
-    It also tests the psGaussianDev() procedure.
+    It also tests the p_psGaussianDev() procedure.
  *****************************************************************************/
 #include <stdio.h>
@@ -49,7 +49,7 @@
     printPositiveTestHeader(stdout,
                             "psFunctions functions",
-                            "psGaussianDev()");
+                            "p_psGaussianDev()");
 
-    myGaussData = psGaussianDev(MY_MEAN, MY_STDEV, N);
+    myGaussData = p_psGaussianDev(MY_MEAN, MY_STDEV, N);
     for (psS32 i = 0; i < N ; i++) {
         printf("Gaussian Deviate [%d] is %f\n", i, myGaussData->data.F32[i]);
@@ -57,5 +57,5 @@
 
     if ( myGaussData->type.type != PS_TYPE_F32) {
-        psAbort(__func__,"psGaussianDev did not return a vector of type F32");
+        psAbort(__func__,"p_psGaussianDev did not return a vector of type F32");
     }
 
@@ -70,5 +70,5 @@
     printFooter(stdout,
                 "psFunctions functions",
-                "psGaussianDev()",
+                "p_psGaussianDev()",
                 testStatus);
 
