diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-07 16:42:54 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-07 16:53:25 +0100 |
commit | 3deadb918f1ac034e4edf03e1ba88468ee76bd62 (patch) | |
tree | 65777cbbca906cc863c90fc5e065a315b8137844 /src/shared/macro.h | |
parent | 29d230f6f297e76ea06eb1365f6f6c16a92abf9e (diff) |
util: add circle to special chars we can draw
Diffstat (limited to 'src/shared/macro.h')
-rw-r--r-- | src/shared/macro.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/shared/macro.h b/src/shared/macro.h index d3f4245d5d..9e94495dd6 100644 --- a/src/shared/macro.h +++ b/src/shared/macro.h @@ -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 : \ |