From: Andrew Burgess Date: Mon, 29 Jul 2024 12:47:32 +0000 (+0100) Subject: libiberty/argv.c: remove only_whitespace X-Git-Tag: basepoints/gcc-16~6832 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea238096883211f8c6e72f69912c51307996dc24;p=thirdparty%2Fgcc.git libiberty/argv.c: remove only_whitespace After the commit: commit 5e1d530da87a6d2aa7e719744cb278e7e54a6623 (gcc-buildargv) Date: Sat Feb 10 11:22:13 2024 +0000 libiberty/buildargv: handle input consisting of only white space The function only_whitespace (in argv.c) was no longer being called. Lets delete it. There should be no user visible changes after this commit. 2024-07-29 Andrew Burgess libiberty/ * argv.c (only_whitespace): Delete. --- diff --git a/libiberty/argv.c b/libiberty/argv.c index 675336273f3..f889432a868 100644 --- a/libiberty/argv.c +++ b/libiberty/argv.c @@ -124,15 +124,6 @@ consume_whitespace (const char **input) } } -static int -only_whitespace (const char* input) -{ - while (*input != EOS && ISSPACE (*input)) - input++; - - return (*input == EOS); -} - /* @deftypefn Extension char** buildargv (char *@var{sp})