X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Ftoolbox%2Fchain.c;h=0b3f400f3269891b89888af55cf9fcc3df412ac8;hb=c95c1500eca183c4ed7c8c85cec4f4348ec13e71;hp=92652d2b56eecea3ab18da8b4fc9b6b75aebb7d6;hpb=e398feab8946e1fcddce32da2682f3b71303d361;p=cacao.git diff --git a/src/toolbox/chain.c b/src/toolbox/chain.c index 92652d2b5..0b3f400f3 100644 --- a/src/toolbox/chain.c +++ b/src/toolbox/chain.c @@ -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. @@ -20,14 +19,16 @@ 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 1141 2004-06-05 23:19:24Z twisti $ + Changes: Christian Thalinger + + $Id: chain.c 4357 2006-01-22 23:33:38Z twisti $ */ @@ -36,12 +37,11 @@ #include #include -#include "global.h" -#include "toolbox/memory.h" +#include "mm/memory.h" #include "toolbox/chain.h" -chain *chain_new() +chain *chain_new(void) { chain *c; @@ -55,7 +55,7 @@ chain *chain_new() } -chain *chain_dnew() +chain *chain_dnew(void) { chain *c;