From 39090114f0812d93ce9c065a6f2fae02f6e06d50 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 31 Mar 1999 04:11:35 +0000 Subject: (PROGRAM_NAME, AUTHORS): Define and use. --- src/yes.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/yes.c') diff --git a/src/yes.c b/src/yes.c index 2a6daa286..1e0155df0 100644 --- a/src/yes.c +++ b/src/yes.c @@ -25,6 +25,11 @@ #include "system.h" #include "long-options.h" +/* The official name of this program (e.g., no `g' prefix). */ +#define PROGRAM_NAME "yes" + +#define AUTHORS "David MacKenzie" + /* The name this program was run with. */ char *program_name; @@ -57,8 +62,8 @@ main (int argc, char **argv) /* Don't recognize --help or --version if POSIXLY_CORRECT is set. */ if (getenv ("POSIXLY_CORRECT") == NULL) - parse_long_options (argc, argv, "yes", GNU_PACKAGE, VERSION, - "David MacKenzie", usage); + parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION, + AUTHORS, usage); if (argc == 1) while (1) -- cgit v1.2.3-54-g00ecf