Staging
v0.5.1
https://github.com/python/cpython
Revision feacecc7dd1d75a617a461a7337f78e0cfe6f2f2 authored by Martin v. Löwis on 18 May 2003, 13:42:58 UTC, committed by Martin v. Löwis on 18 May 2003, 13:42:58 UTC
Fixes bug reported in comment to #728322.
1 parent f1e89b1
Raw File
Tip revision: feacecc7dd1d75a617a461a7337f78e0cfe6f2f2 authored by Martin v. Löwis on 18 May 2003, 13:42:58 UTC
Only look for krb5.h if ssl.h was found. Backport of 1.166.
Tip revision: feacecc
pygetopt.h

#ifndef Py_PYGETOPT_H
#define Py_PYGETOPT_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) _PyOS_opterr;
extern DL_IMPORT(int) _PyOS_optind;
extern DL_IMPORT(char *) _PyOS_optarg;

DL_IMPORT(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PYGETOPT_H */
back to top