2005-01-05 Mike Frysinger <vapier@gentoo.org>

* include/alloca.h (extend_alloca): Fix typoed name 'extern_alloca'.
This commit is contained in:
Roland McGrath 2006-01-06 09:55:30 +00:00
parent e7ebabedca
commit 1aafee8730

View File

@ -42,7 +42,7 @@ extern int __libc_alloca_cutoff (size_t size) __attribute__ ((const));
len = __newlen; \
__newbuf; })
#else
# define extern_alloca(buf, len, newlen) \
# define extend_alloca(buf, len, newlen) \
__alloca (((len) = (newlen)))
#endif