~ubuntu-branches/ubuntu/lucid/python2.6/lucid

1 by Matthias Klose
Import upstream version 2.6.1
1
#ifndef Py_PYGETOPT_H
2
#define Py_PYGETOPT_H
3
#ifdef __cplusplus
4
extern "C" {
5
#endif
6
7
PyAPI_DATA(int) _PyOS_opterr;
8
PyAPI_DATA(int) _PyOS_optind;
9
PyAPI_DATA(char *) _PyOS_optarg;
10
11
PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
12
13
#ifdef __cplusplus
14
}
15
#endif
16
#endif /* !Py_PYGETOPT_H */
17