aboutsummaryrefslogtreecommitdiffstats
path: root/include/alloca.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/alloca.h')
-rw-r--r--include/alloca.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/alloca.h b/include/alloca.h
index 4c9db33..ff2f8c8 100644
--- a/include/alloca.h
+++ b/include/alloca.h
@@ -46,7 +46,7 @@
*
* @since Always.
*/
-void* alloca(size_t);
+void* alloca(size_t)
__GCC_ONLY(__attribute__((__warn_unused_result__)));
#if defined(__GNUC__)
# define alloca(size) __builtin_alloca(size)
@@ -94,7 +94,7 @@ void (needstack)(int);
* @param func The function in the source code whence the check was made,
* `NULL` if unknown (C99 is required.)
*/
-void __needstack(int, const char*, int, const char*)
+void __needstack(int, const char*, int, const char*);