1#ifndef _ARGP_H
2#include <argp/argp.h>
3
4/* Prototypes for internal argp.h functions. */
5#include <stdarg.h>
6void
7__argp_error_internal (const struct argp_state *state, const char *fmt,
8 va_list ap, unsigned int mode_flags);
9
10void
11__argp_failure_internal (const struct argp_state *state, int status,
12 int errnum, const char *fmt, va_list ap,
13 unsigned int mode_flags);
14
15#ifndef _ISOMAC
16extern __typeof (__argp_error) __argp_error attribute_hidden;
17extern __typeof (__argp_failure) __argp_failure attribute_hidden;
18extern __typeof (__argp_input) __argp_input attribute_hidden;
19extern __typeof (__argp_state_help) __argp_state_help attribute_hidden;
20#endif
21
22#endif
23

source code of glibc/include/argp.h