summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2006-01-06 09:55:30 +0000
committerRoland McGrath <roland@gnu.org>2006-01-06 09:55:30 +0000
commit1aafee87306a827f119c3e1b1a61373154449127 (patch)
tree411337ef8b03ddb6303fcb6bd6ca2c10ed7b833c /include
parente7ebabedca9a495ac68a6fe59c81c05404ccc725 (diff)
2005-01-05 Mike Frysinger <vapier@gentoo.org>
* include/alloca.h (extend_alloca): Fix typoed name 'extern_alloca'.
Diffstat (limited to 'include')
-rw-r--r--include/alloca.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/alloca.h b/include/alloca.h
index de541f4e5a..563d7868bd 100644
--- a/include/alloca.h
+++ b/include/alloca.h
@@ -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