aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-08-30 15:20:04 +0200
committerMattias Andrée <maandree@operamail.com>2015-08-30 15:20:04 +0200
commit4062f68e3a1af8a42b963317cba58fb5c8ca9218 (patch)
treee83e9b7a3ac3902c111727d6ef1c2e34d354a218 /include
parentadd __warning and __slibc_warning macros (diff)
downloadslibc-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.h8
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