diff options
author | Rob Landley <rob@landley.net> | 2006-05-07 20:20:34 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-07 20:20:34 +0000 |
commit | a3896511152cd5dcd64d2eb4aebcce65b29c6c0b (patch) | |
tree | 0058e653d90a3d2a961fca16f7c7afd57cd63715 /debianutils | |
parent | f8a808426745ee5f4e5cc76ff1fb9c484c315195 (diff) | |
download | busybox-a3896511152cd5dcd64d2eb4aebcce65b29c6c0b.tar.gz |
Remove bb_strlen() in favor of -fno-builtin-strlen. Saves as many bytes
as the old optimization did (actually does slightly better under gcc 4.0), and
simplifies the code.
Diffstat (limited to 'debianutils')
-rw-r--r-- | debianutils/which.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debianutils/which.c b/debianutils/which.c index 4d206ab29..f2991c561 100644 --- a/debianutils/which.c +++ b/debianutils/which.c @@ -29,7 +29,7 @@ int which_main(int argc, char **argv) path_list = getenv("PATH"); if (path_list != NULL) { - size_t path_len = bb_strlen(path_list); + size_t path_len = strlen(path_list); char *new_list = NULL; count = 1; @@ -88,7 +88,7 @@ int which_main(int argc, char **argv) break; } free(buf); - path_n += (bb_strlen(path_n) + 1); + path_n += (strlen(path_n) + 1); } } if (found) { |