From: Jim Meyering Date: Sat, 1 Dec 2001 17:21:57 +0000 (+0000) Subject: (EMIT_HELP_DESCRIPTION): New macro. X-Git-Tag: TEXTUTILS-2_0_18~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a34483b1437c00354695c5bc446c25e4b2d68689;p=thirdparty%2Fcoreutils.git (EMIT_HELP_DESCRIPTION): New macro. (EMIT_VERSION_DESCRIPTION): New macro. --- diff --git a/src/sys2.h b/src/sys2.h index 513b837d8b..2fa19d3bb3 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -404,6 +404,11 @@ enum usage (EXIT_SUCCESS); \ break; +#define EMIT_HELP_DESCRIPTION(Stream) \ + fputs (_(" --help display this help and exit\n"), Stream) +#define EMIT_VERSION_DESCRIPTION(Stream) \ + fputs (_(" --version output version information and exit\n"), Stream) + #include "closeout.h" #include "version-etc.h"