chiark / gitweb /
use #pragma once instead of foo*foo define guards
[elogind.git] / src / shared / macro.h
index d3f4245d5d0c0a72f503e34850796a4a1af2908b..9e94495dd6f5760c884c3bd345bf9fa3fe181630 100644 (file)
@@ -278,11 +278,9 @@ do {                                                                    \
  */
 #define F_TYPE_EQUAL(a, b) (a == (typeof(a)) b)
 
-
 /* Returns the number of chars needed to format variables of the
  * specified type as a decimal string. Adds in extra space for a
  * negative '-' prefix. */
-
 #define DECIMAL_STR_MAX(type)                                           \
         (1+(sizeof(type) <= 1 ? 3 :                                     \
             sizeof(type) <= 2 ? 5 :                                     \