=================================================================== RCS file: /home/cvs/OpenXM_contrib/gnuplot/Attic/eval.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/eval.c 2000/01/22 14:15:57 1.1.1.2 +++ OpenXM_contrib/gnuplot/Attic/eval.c 2003/09/15 07:09:24 1.1.1.3 @@ -1,5 +1,5 @@ #ifndef lint -static char *RCSid = "$Id: eval.c,v 1.1.1.2 2000/01/22 14:15:57 maekawa Exp $"; +static char *RCSid = "$Id: eval.c,v 1.1.1.3 2003/09/15 07:09:24 ohara Exp $"; #endif /* GNUPLOT - eval.c */ @@ -53,7 +53,7 @@ int t_num; } *udv_ptr = (struct udvt_entry *) - gp_alloc((unsigned long) sizeof(struct udvt_entry), "value"); + gp_alloc(sizeof(struct udvt_entry), "value"); (*udv_ptr)->next_udv = NULL; copy_str((*udv_ptr)->udv_name, t_num, MAX_ID_LEN); (*udv_ptr)->udv_value.type = INTGR; /* not necessary, but safe! */ @@ -85,7 +85,7 @@ int t_num; /* index to token[] */ /* create and return a new udf slot */ *udf_ptr = (struct udft_entry *) - gp_alloc((unsigned long) sizeof(struct udft_entry), "function"); + gp_alloc(sizeof(struct udft_entry), "function"); (*udf_ptr)->next_udf = (struct udft_entry *) NULL; (*udf_ptr)->definition = NULL; (*udf_ptr)->at = NULL;