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/assert.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/assert.h')
-rw-r--r-- | include/assert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/assert.h b/include/assert.h index 12d4678..1e351bd 100644 --- a/include/assert.h +++ b/include/assert.h @@ -89,7 +89,7 @@ * @param line The line in the source code whence the assertion was made * @param func The function in the source code whence the assertion was made */ -void __assert_fail(const char* expression, int errnum, const char* file, int line, const char* func) +void __assert_fail(const char*, int, const char*, int, const char*) __noreturn __GCC_ONLY(__attribute__((nonnull(3, 4, 5)))); #endif |