aboutsummaryrefslogtreecommitdiffstats
path: root/include/alloca.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-27 20:02:48 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-27 20:02:48 +0100
commit76f92d5a06b686a56dc534d9cbc74489b8b73390 (patch)
treeecf875dcd6b7062f9b7487ae48a263b75a2c7a8d /include/alloca.h
parentfix issue #9 on github (diff)
downloadslibc-76f92d5a06b686a56dc534d9cbc74489b8b73390.tar.gz
slibc-76f92d5a06b686a56dc534d9cbc74489b8b73390.tar.bz2
slibc-76f92d5a06b686a56dc534d9cbc74489b8b73390.tar.xz
fix a few errors
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r--include/alloca.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/alloca.h b/include/alloca.h
index 49d8879..4c9db33 100644
--- a/include/alloca.h
+++ b/include/alloca.h
@@ -72,7 +72,7 @@ void* alloca(size_t);
* @since Always.
*/
void (needstack)(int);
-# elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
+# if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
# define needstack(n) __needstack(n, __FILE__, __LINE__, __func__)
# else
# define needstack(n) __needstack(n, __FILE__, __LINE__, NULL)