From 7ab9c7ee52db8759d457819f5480378fa3aa97cc Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Fri, 12 May 2000 19:41:47 +0000 Subject: Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik --- coreutils/sync.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'coreutils/sync.c') diff --git a/coreutils/sync.c b/coreutils/sync.c index f8160c8dc..33c79228d 100644 --- a/coreutils/sync.c +++ b/coreutils/sync.c @@ -27,7 +27,11 @@ extern int sync_main(int argc, char **argv) { if (argc > 1 && **(argv + 1) == '-') { - usage("sync\n\nWrite all buffered filesystem blocks to disk.\n"); + usage("sync\n" +#ifndef BB_FEATURE_TRIVIAL_HELP + "\nWrite all buffered filesystem blocks to disk.\n" +#endif + ); } exit(sync()); } -- cgit v1.2.3