Index: trunk/psLib/src/collections/Makefile
===================================================================
--- trunk/psLib/src/collections/Makefile	(revision 1747)
+++ trunk/psLib/src/collections/Makefile	(revision 1761)
@@ -3,6 +3,6 @@
 ##  Makefile:   collections
 ##
-##  $Revision: 1.28 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-08-09 20:29:43 $
+##  $Revision: 1.29 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-09-09 21:59:03 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -40,4 +40,7 @@
 OBJS = $(addprefix makedir/,$(SRC_OBJS))
 
+HEADERS = $(SRC_OBJS:.o=.h)
+
+
 # Define PHONY target "all" which will make all the necessary items
 
@@ -54,5 +57,8 @@
 
 install: $(TARGET_STATIC)
-	install *.h $(includedir)
+	install $(HEADERS) $(includedir)
+
+psCollectionsErrors.h: psCollectionsErrors.dat
+	perl ../parseErrorCodes.pl --data=$? $@
 
 # Define PHONY target "distclean" which will cleanup the distribution
Index: trunk/psLib/src/collections/psVector.c
===================================================================
--- trunk/psLib/src/collections/psVector.c	(revision 1747)
+++ trunk/psLib/src/collections/psVector.c	(revision 1761)
@@ -8,16 +8,12 @@
 *
 *  @author Ross Harman, MHPCC
-*
-*  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-09 23:34:57 $
+*  @author Robert DeSonia, MHPCC
+*
+*  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-09-09 21:59:03 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
 */
 
-/******************************************************************************/
-
-/*  INCLUDE FILES                                                             */
-
-/******************************************************************************/
 #include <string.h>                        // for memcpy
 #include <stdlib.h>
@@ -29,49 +25,10 @@
 #include "psLogMsg.h"
 #include "psCompare.h"
-
-/******************************************************************************/
-
-/*  DEFINE STATEMENTS                                                         */
-
-/******************************************************************************/
-
-// None
-
-/******************************************************************************/
-
-/*  TYPE DEFINITIONS                                                          */
-
-/******************************************************************************/
-
-// None
-
-/*****************************************************************************/
-
-/*  GLOBAL VARIABLES                                                         */
-
-/*****************************************************************************/
-
-// None
-
-/*****************************************************************************/
-
-/*  FILE STATIC VARIABLES                                                    */
-
-/*****************************************************************************/
-
-// None
-
-/*****************************************************************************/
-
-/*  FUNCTION IMPLEMENTATION - LOCAL                                          */
-
-/*****************************************************************************/
+#include "psCollectionsErrors.h"
+
 static void vectorFree(psVector* restrict psVec);
 
-/*****************************************************************************/
-
-/* FUNCTION IMPLEMENTATION - PUBLIC                                          */
-
-/*****************************************************************************/
+// FUNCTION IMPLEMENTATION - PUBLIC
+
 psVector* psVectorAlloc(unsigned int nalloc, psElemType elemType)
 {
