Cleanup patch by Bernhard Fischer, removing unnecessary includes of

getopt.h, whitespace changes, typos, etc.
This commit is contained in:
Rob Landley
2005-09-11 01:05:30 +00:00
parent db289b258d
commit b7128c6236
23 changed files with 20 additions and 36 deletions

View File

@ -43,8 +43,6 @@ int readlink_main(int argc, char **argv)
RESERVE_CONFIG_BUFFER(resolved_path, PATH_MAX);
#endif
/* no options, no getopt */
if (optind + 1 != argc)
bb_show_usage();
@ -58,9 +56,8 @@ int readlink_main(int argc, char **argv)
if (!buf)
return EXIT_FAILURE;
puts(buf);
#ifdef CONFIG_FEATURE_CLEAN_UP
free(buf);
#endif
if (ENABLE_FEATURE_CLEAN_UP) free(buf);
return EXIT_SUCCESS;
}