Commit 2021c8d2 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* system.h (alloca): Prototype if __GNUC__ && __SIZE_TYPE__.

From-SVN: r35020
parent 8dd8d754
2000-07-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* system.h (alloca): Prototype if __GNUC__ && __SIZE_TYPE__.
2000-07-13 Jakub Jelinek <jakub@redhat.com>
* calls.c (stored_args_map): New variable.
......
......@@ -610,4 +610,9 @@ extern void abort PARAMS ((void));
#define UNION_INIT_ZERO
#endif
/* GCC now gives implicit declaration warnings for undeclared builtins. */
#if defined(__GNUC__) && defined (__SIZE_TYPE__)
extern void *alloca (__SIZE_TYPE__);
#endif
#endif /* __GCC_SYSTEM_H__ */
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