aboutsummaryrefslogtreecommitdiffstats
path: root/include/alloca.h
diff options
context:
space:
mode:
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 76e027f..3ef962b 100644
--- a/include/alloca.h
+++ b/include/alloca.h
@@ -41,7 +41,7 @@
* space. Do not free it, it will be freed
* automatically when the function returns.
*/
-void* alloca(size_t size);
+void* alloca(size_t);
#if defined(__GNUC__)
# define alloca(size) __builtin_alloca(size)
#endif