blob: c094972c97d3d1c7cecef81b25617b15a270074e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _GETOPT_H
#include <features.h> /* Get __GNU_LIBRARY__ defined now. */
#include <posix/getopt.h>
# if defined _GETOPT_H && !defined _ISOMAC
/* Now define the internal interfaces. */
extern void __getopt_clean_environment (char **__env);
# endif /* _GETOPT_H && !_ISOMAC */
#endif
|