summaryrefslogtreecommitdiff
path: root/src/basic/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/basic/util.h')
-rw-r--r--src/basic/util.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/basic/util.h b/src/basic/util.h
index 078c4313b5..fc73e13fe4 100644
--- a/src/basic/util.h
+++ b/src/basic/util.h
@@ -237,15 +237,6 @@ static inline unsigned log2u_round_up(unsigned x) {
return log2u(x - 1) + 1;
}
-#define DECIMAL_STR_WIDTH(x) \
- ({ \
- typeof(x) _x_ = (x); \
- unsigned ans = 1; \
- while (_x_ /= 10) \
- ans++; \
- ans; \
- })
-
#define alloca0(n) \
({ \
char *_new_; \