From: Eli Zaretskii Date: Fri, 30 Jan 2004 17:12:40 +0000 (+0000) Subject: Fix the prototype for xfree. X-Git-Tag: ttn-vms-21-2-B4~7784 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a0367d423d5a84324074d382685b7d5e9626ae34;p=emacs.git Fix the prototype for xfree. --- diff --git a/src/ChangeLog b/src/ChangeLog index 9d52344d5b3..27b6f22ebfb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2004-01-29 Eli Zaretskii + + * alloca.c [!alloca]: Fix the prototype for xfree. + 2004-01-29 Kenichi Handa * fns.c (string_char_to_byte): Optimize for ASCII only string. diff --git a/src/alloca.c b/src/alloca.c index 460d0ae9a54..e8c8319adc4 100644 --- a/src/alloca.c +++ b/src/alloca.c @@ -100,7 +100,7 @@ typedef POINTER_TYPE *pointer; # define free xfree void *xmalloc _P ((size_t)); -void xfree _P ((void *)) +void xfree _P ((void *)); /* Define STACK_DIRECTION if you know the direction of stack growth for your system; otherwise it will be automatically