aboutsummaryrefslogtreecommitdiffstats
path: root/include/assert.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-20 16:56:23 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-20 16:56:23 +0100
commit1b4306d5f4c9d16613bb645a853c77f0c0a14ba9 (patch)
treea6cdb2f873f97746f9128906e083abf9c9ad0b40 /include/assert.h
parentIt is of course possible that int is 16 bits, and long is required to get 32 bits (diff)
downloadslibc-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/assert.h')
-rw-r--r--include/assert.h2
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