=================================================================== RCS file: /home/cvs/OpenXM_contrib/gnuplot/Attic/alloc.c,v retrieving revision 1.1.1.2 retrieving revision 1.1.1.3 diff -u -p -r1.1.1.2 -r1.1.1.3 --- OpenXM_contrib/gnuplot/Attic/alloc.c 2000/01/22 14:15:56 1.1.1.2 +++ OpenXM_contrib/gnuplot/Attic/alloc.c 2003/09/15 07:09:23 1.1.1.3 @@ -1,5 +1,5 @@ #ifndef lint -static char *RCSid = "$Id: alloc.c,v 1.1.1.2 2000/01/22 14:15:56 maekawa Exp $"; +static char *RCSid = "$Id: alloc.c,v 1.1.1.3 2003/09/15 07:09:23 ohara Exp $"; #endif /* GNUPLOT - alloc.c */ @@ -154,9 +154,10 @@ void check_pointer_in_block(void *block, void *p, int } } -char *gp_alloc(size, usage) -unsigned long size; -char *usage; +generic * +gp_alloc(size, usage) + unsigned long size; + char *usage; { struct frame_struct *p; unsigned long total_size = size + RESERVED_SIZE + 1; @@ -263,7 +264,7 @@ void end_leak_check(char *file, int line) * so it depends on this using malloc(). */ -char * +generic * gp_alloc(size, message) unsigned long size; /* # of bytes */ char *message; /* description of what is being allocated */