Commit 574a24a2 authored by Wayne Davison's avatar Wayne Davison

Try a full prototype for alloca() for those systems that need it.

parent 9775d6ab
......@@ -75,7 +75,7 @@ void * alloca (size_t __size)
# else
# ifdef HAVE_ALLOCA
# ifndef alloca /* predefined by HP cc +Olibcalls */
char *alloca ();
char *alloca(size_t size);
# endif
# else
# ifdef alloca
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment