diff options
author | Roland McGrath <roland@gnu.org> | 2006-01-06 09:55:30 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-01-06 09:55:30 +0000 |
commit | 1aafee87306a827f119c3e1b1a61373154449127 (patch) | |
tree | 411337ef8b03ddb6303fcb6bd6ca2c10ed7b833c /include/alloca.h | |
parent | e7ebabedca9a495ac68a6fe59c81c05404ccc725 (diff) | |
download | glibc-1aafee87306a827f119c3e1b1a61373154449127.zip glibc-1aafee87306a827f119c3e1b1a61373154449127.tar.gz glibc-1aafee87306a827f119c3e1b1a61373154449127.tar.bz2 |
2005-01-05 Mike Frysinger <vapier@gentoo.org>
* include/alloca.h (extend_alloca): Fix typoed name 'extern_alloca'.
Diffstat (limited to 'include/alloca.h')
-rw-r--r-- | include/alloca.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/alloca.h b/include/alloca.h index de541f4..563d786 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 |