forked from KolibriOS/kolibrios
- Added simple function "getopt" in stdlib (tcc)
git-svn-id: svn://kolibrios.org@8380 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
9
programs/develop/ktcc/trunk/libc/include/getopt.h
Normal file
9
programs/develop/ktcc/trunk/libc/include/getopt.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#ifndef GETOPT_H
|
||||
#define GETOPT_H
|
||||
|
||||
extern int optind, opterr;
|
||||
extern char *optarg;
|
||||
|
||||
int getopt(int argc, char *argv[], char *optstring);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user