Index: /trunk/psLib/Makefile.am
===================================================================
--- /trunk/psLib/Makefile.am	(revision 5891)
+++ /trunk/psLib/Makefile.am	(revision 5892)
@@ -2,4 +2,6 @@
 
 bin_SCRIPTS = pslib-config psParseErrorCodes
+
+bin_PROGRAMS = psTableParse
 
 pkgconfigdir = $(libdir)/pkgconfig
@@ -14,4 +16,6 @@
     psParsePrecessionTable \
     autogen.sh
+
+psTableParse_SOURCES = psTableParse.c
 
 if DOXYGEN
Index: /trunk/psLib/psTableParse.c
===================================================================
--- /trunk/psLib/psTableParse.c	(revision 5891)
+++ /trunk/psLib/psTableParse.c	(revision 5892)
@@ -7,11 +7,15 @@
  *  @author Dave Robbins, MHPCC
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-12-21 06:15:58 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-01-04 22:59:31 $
  *
  *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
  */
 
-#include "pslib.h"
+//#include "pslib.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <math.h>
 
 int main(int argc, char *argv[])
@@ -31,8 +35,8 @@
     input = fopen(argv[1], "r");
     output = fopen(argv[2], "w");
-    char data;
+    //    char data;
     char data2[200];
     int i;
-    while ( fscanf(input, "%188c", &data2) != EOF) {
+    while ( fscanf(input, "%188c", data2) != EOF) {
         for (i = 7; i <= 14; i++) {
             fprintf(output, "%c", data2[i]);
