getopt varies too much between platforms, and we already use compat/getopt.c

for Linux so just use it everywhere.
This commit is contained in:
Nicholas Marriott
2020-03-17 16:06:30 +00:00
parent 5717633cf5
commit 80f20b8e4e
2 changed files with 6 additions and 36 deletions

View File

@ -370,7 +370,6 @@ int utf8proc_mbtowc(wchar_t *, const char *, size_t);
int utf8proc_wctomb(char *, wchar_t);
#endif
#ifndef HAVE_GETOPT
/* getopt.c */
extern int BSDopterr;
extern int BSDoptind;
@ -384,6 +383,5 @@ int BSDgetopt(int, char *const *, const char *);
#define optopt BSDoptopt
#define optreset BSDoptreset
#define optarg BSDoptarg
#endif
#endif /* COMPAT_H */