aboutsummaryrefslogtreecommitdiffstats
path: root/include/alloca.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/alloca.h')
-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)