From 43df9b2fccc347e95f882519332592a826d72d11 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 2 Sep 2019 09:07:02 -0600 Subject: Remove strcat_to_buf An earlier patch in the series removed the last call to strcat_to_buf, so this patch removes the function entirely. gdb/ChangeLog 2019-09-20 Tom Tromey * tui/tui.h (strcat_to_buf): Don't declare. * tui/tui.c (strcat_to_buf): Remove. --- gdb/tui/tui.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'gdb/tui/tui.c') diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 966304f..30bf548 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -570,19 +570,6 @@ tui_disable_command (const char *args, int from_tty) tui_disable (); } -void -strcat_to_buf (char *buf, int buflen, - const char *item_to_add) -{ - if (item_to_add != NULL && buf != NULL) - { - if ((strlen (buf) + strlen (item_to_add)) <= buflen) - strcat (buf, item_to_add); - else - strncat (buf, item_to_add, (buflen - strlen (buf))); - } -} - #if 0 /* Solaris defines CTRL. */ #ifndef CTRL -- cgit v1.1