diff --git a/src/prototypes.h b/src/prototypes.h index 18a2fca5..61d8374b 100644 --- a/src/prototypes.h +++ b/src/prototypes.h @@ -532,9 +532,7 @@ void complete_a_word(void); void get_homedir(void); const char *tail(const char *path); char *concatenate(const char *path, const char *name); -#ifdef ENABLE_LINENUMBERS int digits(ssize_t n); -#endif bool parse_num(const char *str, ssize_t *result); bool parse_line_column(const char *str, ssize_t *line, ssize_t *column); void recode_NUL_to_LF(char *string, size_t length); diff --git a/src/utils.c b/src/utils.c index a0394174..99d96257 100644 --- a/src/utils.c +++ b/src/utils.c @@ -76,7 +76,6 @@ char *concatenate(const char *path, const char *name) return joined; } -#ifdef ENABLE_LINENUMBERS /* Return the number of digits that the given integer n takes up. */ int digits(ssize_t n) { @@ -106,7 +105,6 @@ int digits(ssize_t n) } } } -#endif /* Read an integer from the given string. If it parses okay, * store it in *result and return TRUE; otherwise, return FALSE. */