aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2004-01-30 17:12:40 +0000
committerEli Zaretskii2004-01-30 17:12:40 +0000
commita0367d423d5a84324074d382685b7d5e9626ae34 (patch)
treebd81e9bfb8c3d668531489b695c692c2eead5551 /src
parent2d7502b55b52b9668c2c920f1bfa5bd437fb3b96 (diff)
downloademacs-a0367d423d5a84324074d382685b7d5e9626ae34.tar.gz
emacs-a0367d423d5a84324074d382685b7d5e9626ae34.zip
Fix the prototype for xfree.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/alloca.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9d52344d5b3..27b6f22ebfb 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12004-01-29 Eli Zaretskii <eliz@elta.co.il>
2
3 * alloca.c [!alloca]: Fix the prototype for xfree.
4
12004-01-29 Kenichi Handa <handa@m17n.org> 52004-01-29 Kenichi Handa <handa@m17n.org>
2 6
3 * fns.c (string_char_to_byte): Optimize for ASCII only string. 7 * 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;
100# define free xfree 100# define free xfree
101 101
102void *xmalloc _P ((size_t)); 102void *xmalloc _P ((size_t));
103void xfree _P ((void *)) 103void xfree _P ((void *));
104 104
105/* Define STACK_DIRECTION if you know the direction of stack 105/* Define STACK_DIRECTION if you know the direction of stack
106 growth for your system; otherwise it will be automatically 106 growth for your system; otherwise it will be automatically