elf: Ignore LD_LIBRARY_PATH and debug env var for setuid for static
[glibc.git] / include / argp.h
blob7077471d990b4ddf7c05ed5676ca0b990eb43bf5
1 #ifndef _ARGP_H
2 #include <argp/argp.h>
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);
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);
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
22 #endif