diff options
Diffstat (limited to 'argp/argp-eexst.c')
-rw-r--r-- | argp/argp-eexst.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/argp/argp-eexst.c b/argp/argp-eexst.c index 676d1ec517..9040058e4a 100644 --- a/argp/argp-eexst.c +++ b/argp/argp-eexst.c @@ -22,8 +22,11 @@ #include <config.h> #endif +#include <sysexits.h> + #include "argp.h" /* The exit status that argp will use when exiting due to a parsing error. - If not defined or set by the user program, this defaults to 1. */ -error_t argp_err_exit_status = 1; + If not defined or set by the user program, this defaults to EX_USAGE from + <sysexits.h>. */ +error_t argp_err_exit_status = EX_USAGE; |