diff options
Diffstat (limited to 'common/python/2.5/pygetopt.h')
| -rw-r--r-- | common/python/2.5/pygetopt.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/common/python/2.5/pygetopt.h b/common/python/2.5/pygetopt.h new file mode 100644 index 0000000..80908be --- /dev/null +++ b/common/python/2.5/pygetopt.h @@ -0,0 +1,17 @@ + +#ifndef Py_PYGETOPT_H +#define Py_PYGETOPT_H +#ifdef __cplusplus +extern "C" { +#endif + +PyAPI_DATA(int) _PyOS_opterr; +PyAPI_DATA(int) _PyOS_optind; +PyAPI_DATA(char *) _PyOS_optarg; + +PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring); + +#ifdef __cplusplus +} +#endif +#endif /* !Py_PYGETOPT_H */ |