* src/native/vm/gnu/gnu_classpath_VMSystemProperties.c: Updated year.
[cacao.git] / src / toolbox / chain.h
index 53a535be92b26611dc5a423f55e4e32d06443d5e..b656ab34d045fc6790accf69d80b0f795bc4a70c 100644 (file)
@@ -1,9 +1,9 @@
 /* toolbox/chain.h - management of doubly linked lists with external linking
 
-   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
-   M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
-   P. Tomsich, J. Wenninger
+   Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
+   C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+   E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+   J. Wenninger, Institut f. Computersprachen - TU Wien
 
    This file is part of CACAO.
 
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
-   Contact: cacao@complang.tuwien.ac.at
+   Contact: cacao@cacaojvm.org
 
    Authors: Reinhard Grafl
 
-   $Id: chain.h 662 2003-11-21 18:06:25Z jowenn $
+   $Id: chain.h 4357 2006-01-22 23:33:38Z twisti $
 
 */
 
@@ -50,8 +50,8 @@ typedef struct chain {                    /* structure for list */
 
 
 /* function prototypes */
-chain *chain_new();
-chain *chain_dnew();
+chain *chain_new(void);
+chain *chain_dnew(void);
 void chain_free(chain *c);
 
 void chain_addafter(chain *c, void *element);