X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Ftoolbox%2Fchain.h;h=b656ab34d045fc6790accf69d80b0f795bc4a70c;hb=797f585bac53d972795326c426e958bc81e8fa9d;hp=53a535be92b26611dc5a423f55e4e32d06443d5e;hpb=b975f1edd4b4701d9401c6fb94db952a27b9c596;p=cacao.git diff --git a/src/toolbox/chain.h b/src/toolbox/chain.h index 53a535be9..b656ab34d 100644 --- a/src/toolbox/chain.h +++ b/src/toolbox/chain.h @@ -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. @@ -19,14 +19,14 @@ 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);