1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Fix compilation of alloca.c under tcc.

This commit is contained in:
hniksic 2005-04-08 16:09:09 -07:00
parent db9855f2be
commit 823164c62c
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-04-09 Hrvoje Niksic <hniksic@xemacs.org>
* alloca.c: Include wget.h to be able to use xmalloc. In addition
to defining malloc to xmalloc, also define free to xfree.
2005-04-09 Hrvoje Niksic <hniksic@xemacs.org>
* http-ntlm.c (ntlm_output): Use "char", not "unsigned char" for

View File

@ -88,7 +88,9 @@ typedef char *pointer;
Callers below should use malloc. */
#ifndef emacs
#include "wget.h"
#define malloc xmalloc
#define free xfree
#endif
extern pointer malloc ();