Index: /trunk/psLib/src/collections/psList.h
===================================================================
--- /trunk/psLib/src/collections/psList.h	(revision 3115)
+++ /trunk/psLib/src/collections/psList.h	(revision 3116)
@@ -10,6 +10,6 @@
  *  @ingroup LinkedList
  *
- *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-02 20:21:48 $
+ *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-03 00:56:59 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -119,5 +119,5 @@
  */
 psBool psListAdd(
-    psList* restrict list,             ///< list to add item to
+    psList* list,                      ///< list to add item to
     psS32 location,                    ///< index, PS_LIST_HEAD, PS_LIST_TAIL, or numbered location.
     psPtr data                         ///< data item to add.  If NULL, list is not modified.
@@ -147,5 +147,5 @@
  */
 psBool psListRemove(
-    psList* restrict list,             ///< list to remove element from
+    psList* list,                      ///< list to remove element from
     psS32 location                     ///< index of item
 );
@@ -156,5 +156,5 @@
  */
 psBool psListRemoveData(
-    psList* restrict list,             ///< list to remove element from
+    psList* list,                      ///< list to remove element from
     psPtr data                         ///< data item to find and remove
 );
@@ -168,5 +168,5 @@
  */
 psPtr psListGet(
-    psList* restrict list,             ///< list to retrieve element from
+    psList* list,                      ///< list to retrieve element from
     psS32 location                     ///< index number, PS_LIST_HEAD, or PS_LIST_TAIL
 );
@@ -178,5 +178,5 @@
  */
 psPtr psListGetAndIncrement(
-    psListIterator* restrict iterator  ///< iterator to move
+    psListIterator* iterator           ///< iterator to move
 );
 
@@ -187,5 +187,5 @@
  */
 psPtr psListGetAndDecrement(
-    psListIterator* restrict iterator  ///< iterator to move
+    psListIterator* iterator           ///< iterator to move
 );
 
Index: /trunk/psLib/src/types/psList.h
===================================================================
--- /trunk/psLib/src/types/psList.h	(revision 3115)
+++ /trunk/psLib/src/types/psList.h	(revision 3116)
@@ -10,6 +10,6 @@
  *  @ingroup LinkedList
  *
- *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-02 20:21:48 $
+ *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-03 00:56:59 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -119,5 +119,5 @@
  */
 psBool psListAdd(
-    psList* restrict list,             ///< list to add item to
+    psList* list,                      ///< list to add item to
     psS32 location,                    ///< index, PS_LIST_HEAD, PS_LIST_TAIL, or numbered location.
     psPtr data                         ///< data item to add.  If NULL, list is not modified.
@@ -147,5 +147,5 @@
  */
 psBool psListRemove(
-    psList* restrict list,             ///< list to remove element from
+    psList* list,                      ///< list to remove element from
     psS32 location                     ///< index of item
 );
@@ -156,5 +156,5 @@
  */
 psBool psListRemoveData(
-    psList* restrict list,             ///< list to remove element from
+    psList* list,                      ///< list to remove element from
     psPtr data                         ///< data item to find and remove
 );
@@ -168,5 +168,5 @@
  */
 psPtr psListGet(
-    psList* restrict list,             ///< list to retrieve element from
+    psList* list,                      ///< list to retrieve element from
     psS32 location                     ///< index number, PS_LIST_HEAD, or PS_LIST_TAIL
 );
@@ -178,5 +178,5 @@
  */
 psPtr psListGetAndIncrement(
-    psListIterator* restrict iterator  ///< iterator to move
+    psListIterator* iterator           ///< iterator to move
 );
 
@@ -187,5 +187,5 @@
  */
 psPtr psListGetAndDecrement(
-    psListIterator* restrict iterator  ///< iterator to move
+    psListIterator* iterator           ///< iterator to move
 );
 
