From: Steve Bennett Date: Wed, 25 Jul 2018 06:51:52 +0000 (+1000) Subject: Remove a spurious function declaration X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=b606bb6626278c24a6aae514ac5fe49211042caf;p=linenoise.git Remove a spurious function declaration Signed-off-by: Steve Bennett --- diff --git a/stringbuf.c b/stringbuf.c index b42a9cc..f83c1b8 100644 --- a/stringbuf.c +++ b/stringbuf.c @@ -47,7 +47,6 @@ void sb_append(stringbuf *sb, const char *str) void sb_append_len(stringbuf *sb, const char *str, int len) { - int utf8_strlen(const char *str, int bytelen); if (sb->remaining < len + 1) { sb_realloc(sb, sb->last + len + 1 + SB_INCREMENT); }