Index: trunk/psLib/src/collections/psVector.c
===================================================================
--- trunk/psLib/src/collections/psVector.c	(revision 1407)
+++ trunk/psLib/src/collections/psVector.c	(revision 1440)
@@ -9,6 +9,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-07 00:06:06 $
+*  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-08-09 23:34:57 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -67,5 +67,5 @@
 
 /*****************************************************************************/
-static void vectorFree(psVector * restrict psVec);
+static void vectorFree(psVector* restrict psVec);
 
 /*****************************************************************************/
@@ -74,7 +74,7 @@
 
 /*****************************************************************************/
-psVector *psVectorAlloc(unsigned int nalloc, psElemType elemType)
-{
-    psVector *psVec = NULL;
+psVector* psVectorAlloc(unsigned int nalloc, psElemType elemType)
+{
+    psVector* psVec = NULL;
     int elementSize = 0;
 
@@ -88,5 +88,5 @@
 
     // Create vector struct
-    psVec = (psVector *) psAlloc(sizeof(psVector));
+    psVec = (psVector* ) psAlloc(sizeof(psVector));
     p_psMemSetDeallocator(psVec, (psFreeFcn) vectorFree);
 
@@ -102,5 +102,5 @@
 }
 
-psVector *psVectorRealloc(unsigned int nalloc, psVector * restrict in)
+psVector* psVectorRealloc(unsigned int nalloc, psVector* restrict in)
 {
     int elementSize = 0;
@@ -130,5 +130,5 @@
 }
 
-psVector *psVectorRecycle(psVector * restrict in, unsigned int nalloc, psElemType type)
+psVector* psVectorRecycle(psVector* restrict in, unsigned int nalloc, psElemType type)
 {
     psElemType elemType;
@@ -160,5 +160,5 @@
 }
 
-psVector *psVectorSort(psVector * restrict outVector, const psVector * restrict inVector)
+psVector* psVectorSort(psVector* restrict outVector, const psVector* restrict inVector)
 {
     int inN = 0;
@@ -261,5 +261,5 @@
 }
 
-psVector *psVectorSortIndex(psVector * restrict outVector, const psVector * restrict inVector)
+psVector* psVectorSortIndex(psVector* restrict outVector, const psVector* restrict inVector)
 {
     int inN = 0;
@@ -270,5 +270,5 @@
     int *outVec = NULL;
     double diff = 0.0f;
-    psVector *tmpVector = NULL;
+    psVector* tmpVector = NULL;
     psElemType inType = 0;
 
@@ -348,5 +348,5 @@
 }
 
-static void vectorFree(psVector * restrict psVec)
+static void vectorFree(psVector* restrict psVec)
 {
     if (psVec == NULL) {
