diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbserver/utils.c | 21 |
2 files changed, 4 insertions, 21 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 199338b..a348d9a 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,9 @@ 2014-06-12 Tom Tromey <tromey@redhat.com> + * utils.c (freeargv): Remove. + +2014-06-12 Tom Tromey <tromey@redhat.com> + * debug.c (debug_printf): Remove HAVE_GETTIMEOFDAY checks. * server.c (monitor_show_help): Remove HAVE_GETTIMEOFDAY check. (parse_debug_format_options): Likewise. diff --git a/gdb/gdbserver/utils.c b/gdb/gdbserver/utils.c index 19955dc..2d0b331 100644 --- a/gdb/gdbserver/utils.c +++ b/gdb/gdbserver/utils.c @@ -55,27 +55,6 @@ xstrdup (const char *s) return ret; } -#ifndef IN_PROCESS_AGENT - -/* Free a standard argv vector. */ - -void -freeargv (char **vector) -{ - char **scan; - - if (vector != NULL) - { - for (scan = vector; *scan != NULL; scan++) - { - free (*scan); - } - free (vector); - } -} - -#endif - /* Print the system error message for errno, and also mention STRING as the file name for which the error was encountered. Then return to command level. */ |