Index: trunk/psphot/src/psLibUtils.c
===================================================================
--- trunk/psphot/src/psLibUtils.c	(revision 5593)
+++ trunk/psphot/src/psLibUtils.c	(revision 5607)
@@ -64,19 +64,2 @@
     return (TRUE);
 }
-
-// XXX EAM a utility function
-bool p_psVectorPrintRow (int fd, psVector *a, char *name)
-{
-
-    char line[1024];
-
-    sprintf (line, "vector: %s\n", name);
-    write (fd, line, strlen(line));
-
-    for (int i = 0; i < a[0].n; i++) {
-        sprintf (line, "%f  ", p_psVectorGetElementF64(a, i));
-	write (fd, line, strlen(line));
-    }
-    write (fd, "\n", 1);
-    return (true);
-}
