about summary refs log tree commit diff
path: root/misc/sys
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2013-01-23 15:00:39 -0800
committerRoland McGrath <roland@hack.frob.com>2013-01-23 15:00:55 -0800
commit4858fa2af6b597859ec418e7b37cc672d8d05707 (patch)
treeb93ffcfb09f7f56db04f691f58b2e3a0ba0c85ce /misc/sys
parentbae8e7f5ed0cdc8a81ae9b32efc77285d2f5bc7a (diff)
downloadglibc-4858fa2af6b597859ec418e7b37cc672d8d05707.tar.gz
glibc-4858fa2af6b597859ec418e7b37cc672d8d05707.tar.xz
glibc-4858fa2af6b597859ec418e7b37cc672d8d05707.zip
Whitespace fix for __glibc_likely/__glibc_unlikely defns.
Diffstat (limited to 'misc/sys')
-rw-r--r--misc/sys/cdefs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h
index 717bb7b6fb..81ab3187bf 100644
--- a/misc/sys/cdefs.h
+++ b/misc/sys/cdefs.h
@@ -376,11 +376,11 @@
 #endif
 
 #if __GNUC__ >= 3
-# define __glibc_unlikely(cond) __builtin_expect((cond), 0)
-# define __glibc_likely(cond) __builtin_expect((cond), 1)
+# define __glibc_unlikely(cond)	__builtin_expect ((cond), 0)
+# define __glibc_likely(cond)	__builtin_expect ((cond), 1)
 #else
-# define __glibc_unlikely(cond) (cond)
-# define __glibc_likely(cond) (cond)
+# define __glibc_unlikely(cond)	(cond)
+# define __glibc_likely(cond)	(cond)
 #endif
 
 #include <bits/wordsize.h>