On 02/18/21 13:46, Gray Wolf wrote:
- printf("%s", usage_array[i].aname);
+ fputs(usage_array[i].aname, stdout);
Somebody recently added fputs_stdout(), to save a few bytes on each call like this. You should use that here as well. -- Raf _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
