From a0367d423d5a84324074d382685b7d5e9626ae34 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 30 Jan 2004 17:12:40 +0000 Subject: [PATCH] Fix the prototype for xfree. --- src/ChangeLog | 4 ++++ src/alloca.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 -- 2.39.2