diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-08-30 03:47:48 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-08-30 03:47:48 +0200 |
commit | 38ffb52f8e5a7e4e1588f816e9b7cc525dfc95b1 (patch) | |
tree | 9e0c3b2848bf719261e6f77b1b6dedaed552ea47 /include/alloca.h | |
parent | add slibc-error.h (diff) | |
download | slibc-38ffb52f8e5a7e4e1588f816e9b7cc525dfc95b1.tar.gz slibc-38ffb52f8e5a7e4e1588f816e9b7cc525dfc95b1.tar.bz2 slibc-38ffb52f8e5a7e4e1588f816e9b7cc525dfc95b1.tar.xz |
remove parameter names from header files to avoid potential errors on inclusion caused by conflictig macro names
Signed-off-by: Mattias Andrée <maandree@operamail.com>
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 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 |