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