toaruos/libc/unistd/getopt.c
2018-05-02 18:58:47 +09:00

12 lines
235 B
C

#include <unistd.h>
#include <getopt.h>
char * optarg = NULL;
int optind = 1;
int opterr = 1;
int optopt = 0;
int getopt(int argc, char * const argv[], const char * optstring) {
return getopt_long(argc, argv, optstring, NULL, 0);
}