summaryrefslogtreecommitdiff
path: root/src/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sleep.c')
-rw-r--r--src/sleep.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/sleep.c b/src/sleep.c
index 3f1ca5f74..a55f301bd 100644
--- a/src/sleep.c
+++ b/src/sleep.c
@@ -24,6 +24,11 @@
#include "error.h"
#include "long-options.h"
+/* The official name of this program (e.g., no `g' prefix). */
+#define PROGRAM_NAME "sleep"
+
+#define AUTHORS "FIXME: unknown"
+
static long argdecode PARAMS ((const char *s));
/* The name by which this program was run. */
@@ -66,8 +71,8 @@ main (int argc, char **argv)
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
- parse_long_options (argc, argv, "sleep", GNU_PACKAGE, VERSION,
- "FIXME: unknown", usage);
+ parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
+ AUTHORS, usage);
while ((c = getopt_long (argc, argv, "", long_options, NULL)) != -1)
{