diff options
| author | Eli Zaretskii | 2004-01-30 17:12:40 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2004-01-30 17:12:40 +0000 |
| commit | a0367d423d5a84324074d382685b7d5e9626ae34 (patch) | |
| tree | bd81e9bfb8c3d668531489b695c692c2eead5551 /src | |
| parent | 2d7502b55b52b9668c2c920f1bfa5bd437fb3b96 (diff) | |
| download | emacs-a0367d423d5a84324074d382685b7d5e9626ae34.tar.gz emacs-a0367d423d5a84324074d382685b7d5e9626ae34.zip | |
Fix the prototype for xfree.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/alloca.c | 2 |
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 @@ | |||
| 1 | 2004-01-29 Eli Zaretskii <eliz@elta.co.il> | ||
| 2 | |||
| 3 | * alloca.c [!alloca]: Fix the prototype for xfree. | ||
| 4 | |||
| 1 | 2004-01-29 Kenichi Handa <handa@m17n.org> | 5 | 2004-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 | ||
| 102 | void *xmalloc _P ((size_t)); | 102 | void *xmalloc _P ((size_t)); |
| 103 | void xfree _P ((void *)) | 103 | void 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 |