mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
e78f615d52
Use libc_hidden_proto for getopt_long, getopt_long_only. * posix/getopt1.c [_LIBC]: Include <getopt.h> instead of "getopt.h". Add libc_hidden_def. * sysdeps/generic/unwind-dw2-fde-glibc.c [_LIBC] (dl_iterate_phdr): Define as a macro for __dl_iterate_phdr. * inet/getnetgrent_r.c (internal_setnetgrent): Renamed from __ name, made static. Add __ name as a strong alias. (internal_endnetgrent): Likewise. (internal_getnetgrent_r): Likewise.
16 lines
250 B
C
16 lines
250 B
C
#ifndef _GETOPT_H
|
|
|
|
#include <posix/getopt.h>
|
|
|
|
# ifdef _GETOPT_H
|
|
|
|
libc_hidden_proto (getopt_long)
|
|
libc_hidden_proto (getopt_long_only)
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern void __getopt_clean_environment (char **__env);
|
|
|
|
# endif
|
|
|
|
#endif
|