diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-20 16:56:23 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-20 16:56:23 +0100 |
commit | 1b4306d5f4c9d16613bb645a853c77f0c0a14ba9 (patch) | |
tree | a6cdb2f873f97746f9128906e083abf9c9ad0b40 /include | |
parent | It is of course possible that int is 16 bits, and long is required to get 32 bits (diff) | |
download | slibc-1b4306d5f4c9d16613bb645a853c77f0c0a14ba9.tar.gz slibc-1b4306d5f4c9d16613bb645a853c77f0c0a14ba9.tar.bz2 slibc-1b4306d5f4c9d16613bb645a853c77f0c0a14ba9.tar.xz |
whitespace
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'include')
-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 5330df9..5305715 100644 --- a/include/assert.h +++ b/include/assert.h @@ -69,7 +69,7 @@ # endif # ifdef NDEBUG # define assert_perror(errnum) ((void)0) -#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) +# elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) # define assert_perror(errnum) \ ((void)((errnum == 0) ? 0 : (__assert_fail(NULL, errnum, __FILE__, __LINE__, __func__), 0))) # else |