mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
16 lines
408 B
C
Executable file
16 lines
408 B
C
Executable file
#ifndef _GETOPT_CORE_H
|
|
#define _GETOPT_CORE_H
|
|
#ifdef COSMOPOLITAN_GETOPT_H_
|
|
#error "don't mix getopt_long() with cosmo's getopt()"
|
|
#endif
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern char *optarg;
|
|
extern int optind, opterr, optopt, optreset;
|
|
|
|
int getopt(int, char *const *, const char *);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* _GETOPT_CORE_H */
|