gps-sdr-sim/getopt.h

10 lines
148 B
C
Raw Normal View History

2015-06-27 09:16:23 +08:00
#ifndef GETOPT_H
#define GETOPT_H
extern char *optarg;
extern int optind;
int getopt(int nargc, char * const nargv[], const char *ostr) ;
#endif