summaryrefslogtreecommitdiff
path: root/src/factor.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-03-31 04:11:35 +0000
committerJim Meyering <jim@meyering.net>1999-03-31 04:11:35 +0000
commit39090114f0812d93ce9c065a6f2fae02f6e06d50 (patch)
treeb093b7942c03b50a9da30be4850c9dc011467b99 /src/factor.c
parentb2513fc340ff971964709e3b19694423ec83ece3 (diff)
downloadcoreutils-39090114f0812d93ce9c065a6f2fae02f6e06d50.tar.xz
(PROGRAM_NAME, AUTHORS): Define and use.
Diffstat (limited to 'src/factor.c')
-rw-r--r--src/factor.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/factor.c b/src/factor.c
index 49fd5b15d..5fa5f736a 100644
--- a/src/factor.c
+++ b/src/factor.c
@@ -31,6 +31,11 @@
#include "xstrtoul.h"
#include "readtokens.h"
+/* The official name of this program (e.g., no `g' prefix). */
+#define PROGRAM_NAME "factor"
+
+#define AUTHORS "Paul Rubin"
+
/* Token delimiters when reading from a file. */
#define DELIM "\n\t "
@@ -174,8 +179,8 @@ main (int argc, char **argv)
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
- parse_long_options (argc, argv, "factor", GNU_PACKAGE, VERSION,
- "Paul Rubin", usage);
+ parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
+ AUTHORS, usage);
fail = 0;
if (argc == 1)