diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-08-30 15:20:04 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-08-30 15:20:04 +0200 |
commit | 4062f68e3a1af8a42b963317cba58fb5c8ca9218 (patch) | |
tree | e83e9b7a3ac3902c111727d6ef1c2e34d354a218 /include | |
parent | add __warning and __slibc_warning macros (diff) | |
download | slibc-4062f68e3a1af8a42b963317cba58fb5c8ca9218.tar.gz slibc-4062f68e3a1af8a42b963317cba58fb5c8ca9218.tar.bz2 slibc-4062f68e3a1af8a42b963317cba58fb5c8ca9218.tar.xz |
whitespace
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/slibc/features.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/slibc/features.h b/include/slibc/features.h index 864754d..ef56e92 100644 --- a/include/slibc/features.h +++ b/include/slibc/features.h @@ -72,9 +72,9 @@ * Macro used to exclude code unless `_SLIBC_SOURCE` is set. */ #if defined(_SLIBC_SOURCE) -# define __SLIBC_ONLY(...) __VA_ARGS__ +# define __SLIBC_ONLY(...) __VA_ARGS__ #else -# define __SLIBC_ONLY(...) /* ignore */ +# define __SLIBC_ONLY(...) /* ignore */ #endif @@ -94,10 +94,10 @@ * Warn if a function, variable or type is used. */ #if !defined(_SLIBC_SUPPRESS_WARNINGS) -# define __warning(msg) __GCC_ONLY(__attribute__((warning(msg)))) +# define __warning(msg) __GCC_ONLY(__attribute__((warning(msg)))) # define __slibc_warning(msg) __SLIBC_ONLY(__warning(msg)) #else -# define __warning(msg) /* ignore */ +# define __warning(msg) /* ignore */ # define __slibc_warning(msg) /* ignore */ #endif |