Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 67038
Collapse All | Expand All

(-)lib/argp.h (-3 / +3 lines)
Lines 557-569 Link Here
557
# endif
557
# endif
558
558
559
ARGP_EI void
559
ARGP_EI void
560
__argp_usage (__const struct argp_state *__state) __THROW
560
__argp_usage (__const struct argp_state *__state) 
561
{
561
{
562
  __argp_state_help (__state, stderr, ARGP_HELP_STD_USAGE);
562
  __argp_state_help (__state, stderr, ARGP_HELP_STD_USAGE);
563
}
563
}
564
564
565
ARGP_EI int
565
ARGP_EI int
566
__option_is_short (__const struct argp_option *__opt) __THROW
566
__option_is_short (__const struct argp_option *__opt) 
567
{
567
{
568
  if (__opt->flags & OPTION_DOC)
568
  if (__opt->flags & OPTION_DOC)
569
    return 0;
569
    return 0;
Lines 575-581 Link Here
575
}
575
}
576
576
577
ARGP_EI int
577
ARGP_EI int
578
__option_is_end (__const struct argp_option *__opt) __THROW
578
__option_is_end (__const struct argp_option *__opt) 
579
{
579
{
580
  return !__opt->key && !__opt->name && !__opt->doc && !__opt->group;
580
  return !__opt->key && !__opt->name && !__opt->doc && !__opt->group;
581
}
581
}

Return to bug 67038