summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c
index 18dc2d876..a61bc34c9 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -37,6 +37,11 @@
#include "long-options.h"
#include "error.h"
+/* The official name of this program (e.g., no `g' prefix). */
+#define PROGRAM_NAME "expr"
+
+#define AUTHORS "Mike Parker"
+
#define NEW(type) ((type *) xmalloc (sizeof (type)))
#define OLD(x) free ((char *) x)
@@ -167,8 +172,8 @@ main (int argc, char **argv)
/* Recognize --help or --version only if POSIXLY_CORRECT is not set. */
if (!posixly_correct)
- parse_long_options (argc, argv, "expr", GNU_PACKAGE, VERSION,
- "Mike Parker", usage);
+ parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
+ AUTHORS, usage);
if (argc == 1)
{