From 34fed69938f1296b62354b2a825b49602fe7af50 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 3 Jan 2016 01:40:46 -0500 Subject: sim: use libiberty countargv in more places A bunch of places open code the countargv implementation, or outright duplicate it (as count_argc). Replace all of those w/countargv. --- sim/common/sim-options.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sim/common/sim-options.c') diff --git a/sim/common/sim-options.c b/sim/common/sim-options.c index e252756..88663f7 100644 --- a/sim/common/sim-options.c +++ b/sim/common/sim-options.c @@ -474,8 +474,7 @@ sim_parse_args (SIM_DESC sd, char **argv) SIM_RC result = SIM_RC_OK; /* Count the number of arguments. */ - for (argc = 0; argv[argc] != NULL; ++argc) - continue; + argc = countargv (argv); /* Count the number of options. */ num_opts = 0; -- cgit v1.1