mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Declare alloca as returning void *, not char *. (The alloca in
alloca.c returns void *.)
This commit is contained in:
parent
b49b6db4f1
commit
67859c4035
@ -1,3 +1,7 @@
|
|||||||
|
2005-04-10 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
|
* config-post.h: Declare alloca as void *, not char *.
|
||||||
|
|
||||||
2005-04-09 Hrvoje Niksic <hniksic@xemacs.org>
|
2005-04-09 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
* recur.c (download_child_p): When -p is used, (temporarily)
|
* recur.c (download_child_p): When -p is used, (temporarily)
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#pragma alloca
|
#pragma alloca
|
||||||
# else
|
# else
|
||||||
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
||||||
char *alloca ();
|
void *alloca ();
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
|
Loading…
Reference in New Issue
Block a user