Staging
v0.5.1
https://github.com/python/cpython
Revision 7f08c1f1091372d6a543c57279bdee907257a864 authored by Martin v. Löwis on 04 November 2008, 20:43:31 UTC, committed by Martin v. Löwis on 04 November 2008, 20:43:31 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67098 | martin.v.loewis | 2008-11-04 21:40:09 +0100 (Di, 04 Nov 2008) | 2 lines

  Issue #4204: Fixed module build errors on FreeBSD 4.
........
1 parent b2d8142
Raw File
Tip revision: 7f08c1f1091372d6a543c57279bdee907257a864 authored by Martin v. Löwis on 04 November 2008, 20:43:31 UTC
Merged revisions 67098 via svnmerge from
Tip revision: 7f08c1f
pygetopt.h

#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 */
back to top