summaryrefslogtreecommitdiff
path: root/argp
diff options
context:
space:
mode:
Diffstat (limited to 'argp')
-rw-r--r--argp/argp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/argp/argp.h b/argp/argp.h
index 8045e3b456..b4ac686393 100644
--- a/argp/argp.h
+++ b/argp/argp.h
@@ -535,13 +535,13 @@ extern void *__argp_input __P ((__const struct argp *argp,
# endif
ARGP_EI void
-__argp_usage (__const struct argp_state *__state)
+__argp_usage __P ((__const struct argp_state *__state))
{
__argp_state_help (__state, stderr, ARGP_HELP_STD_USAGE);
}
ARGP_EI int
-__option_is_short (__const struct argp_option *__opt)
+__option_is_short __P ((__const struct argp_option *__opt))
{
if (__opt->flags & OPTION_DOC)
return 0;
@@ -553,7 +553,7 @@ __option_is_short (__const struct argp_option *__opt)
}
ARGP_EI int
-__option_is_end (__const struct argp_option *__opt)
+__option_is_end __P ((__const struct argp_option *__opt))
{
return !__opt->key && !__opt->name && !__opt->doc && !__opt->group;
}