* Removed all Id tags.
[cacao.git] / src / toolbox / chain.c
index 0804ce6414302329d1f7eabe6f1221fd6ad70b54..ae1bb7c2cbce101f09da45accb0381fb6bb39375 100644 (file)
@@ -1,10 +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, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-   Institut f. Computersprachen, TU Wien
-   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.c 684 2003-12-02 16:50:17Z twisti $
+   Changes: Christian Thalinger
 
 */
 
 #include <stdlib.h>
 #include <assert.h>
 
-#include "global.h"
-#include "memory.h"
-#include "chain.h"
+#include "mm/memory.h"
+#include "toolbox/chain.h"
 
 
-chain *chain_new()
+chain *chain_new(void)
 {
        chain *c;
        
@@ -55,7 +53,7 @@ chain *chain_new()
 }
 
 
-chain *chain_dnew()
+chain *chain_dnew(void)
 {
        chain *c;