Merged with cldc-branch
[cacao.git] / src / toolbox / chain.c
index 59b4d6ba0c90f6f14ec6a2d1996c14c2676763a2..ae1bb7c2cbce101f09da45accb0381fb6bb39375 100644 (file)
@@ -1,9 +1,9 @@
-/* toolbox/chain.c - management of doubly linked lists with external linking
+/* src/toolbox/chain.c - management of doubly linked lists with external linking
 
-   Copyright (C) 1996-2005 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
+   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.c 1735 2004-12-07 14:33:27Z twisti $
+   Changes: Christian Thalinger
 
 */
 
@@ -39,7 +39,7 @@
 #include "toolbox/chain.h"
 
 
-chain *chain_new()
+chain *chain_new(void)
 {
        chain *c;
        
@@ -53,7 +53,7 @@ chain *chain_new()
 }
 
 
-chain *chain_dnew()
+chain *chain_dnew(void)
 {
        chain *c;