diff options
Diffstat (limited to 'src/redo.c')
-rw-r--r-- | src/redo.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -13,6 +13,7 @@ #include "dbg.h" +/* Returns the amount of digits a number n has in decimal. */ static inline int digits(unsigned n) { return (int) log10(n) + 1; } |