summaryrefslogtreecommitdiff
path: root/include/sys/time.h
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-12-29 15:06:30 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-12-29 15:06:30 +0000
commit3f59c71ed8ef6c66f3e3c31162f536861a190a1c (patch)
treebfbe78c694bab9b048ca6b9e99425284ad8188e6 /include/sys/time.h
parent90ca90c53d4364ebefeb54a99deb4c7890d84488 (diff)
- whitespace cleanup; no obj-code changes
Diffstat (limited to 'include/sys/time.h')
-rw-r--r--include/sys/time.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sys/time.h b/include/sys/time.h
index 46b9b5667..1dfe4f36e 100644
--- a/include/sys/time.h
+++ b/include/sys/time.h
@@ -166,9 +166,9 @@ extern int futimesat (int __fd, __const char *__file,
NOTE: `timercmp' does not work for >= or <=. */
# define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
# define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0)
-# define timercmp(a, b, CMP) \
- (((a)->tv_sec == (b)->tv_sec) ? \
- ((a)->tv_usec CMP (b)->tv_usec) : \
+# define timercmp(a, b, CMP) \
+ (((a)->tv_sec == (b)->tv_sec) ? \
+ ((a)->tv_usec CMP (b)->tv_usec) : \
((a)->tv_sec CMP (b)->tv_sec))
# define timeradd(a, b, result) \
do { \