Index: trunk/psLib/src/collections/psVector.c
===================================================================
--- trunk/psLib/src/collections/psVector.c	(revision 2676)
+++ trunk/psLib/src/collections/psVector.c	(revision 3115)
@@ -10,6 +10,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-12-09 21:30:43 $
+*  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-02-03 00:54:10 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -28,8 +28,8 @@
 #include "psCollectionsErrors.h"
 
-static void vectorFree(psVector* restrict psVec);
-
-
-static void vectorFree(psVector* restrict psVec)
+static void vectorFree(psVector* psVec);
+
+
+static void vectorFree(psVector* psVec)
 {
     if (psVec == NULL) {
@@ -64,5 +64,5 @@
 }
 
-psVector* psVectorRealloc(psVector* restrict in, psU32 nalloc)
+psVector* psVectorRealloc(psVector* in, psU32 nalloc)
 {
     psS32 elementSize = 0;
@@ -87,5 +87,5 @@
 }
 
-psVector* psVectorRecycle(psVector* restrict in, psU32 n, psElemType type)
+psVector* psVectorRecycle(psVector* in, psU32 n, psElemType type)
 {
     psS32 byteSize;
@@ -218,5 +218,5 @@
 }
 
-psVector* psVectorSort(psVector* restrict outVector, const psVector* restrict inVector)
+psVector* psVectorSort(psVector* outVector, const psVector* inVector)
 {
     psS32 N = 0;
@@ -302,5 +302,5 @@
 }
 
-psVector* psVectorSortIndex(psVector* restrict outVector, const psVector* restrict inVector)
+psVector* psVectorSortIndex(psVector* outVector, const psVector* inVector)
 {
     psS32 N = 0;
