1
0
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:
hniksic 2005-04-10 11:20:54 -07:00
parent b49b6db4f1
commit 67859c4035
2 changed files with 5 additions and 1 deletions

View File

@ -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)

View File

@ -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