summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Python/getopt.c
diff options
context:
space:
mode:
authorshadchin <[email protected]>2026-02-03 21:59:07 +0300
committershadchin <[email protected]>2026-02-03 22:28:51 +0300
commitbce46f28de392862d5c6c3b185d844ee7c623be3 (patch)
tree424878b5b90144f98970ce4a2745990c77330ad2 /contrib/tools/python3/Python/getopt.c
parent0e0ee9fa48ce9411b4038aa769493d22ff6c10a2 (diff)
Import Python 3.13.11
commit_hash:bbb53cefb159aa3e7afaa475fd19d5a03b66945f
Diffstat (limited to 'contrib/tools/python3/Python/getopt.c')
-rw-r--r--contrib/tools/python3/Python/getopt.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/contrib/tools/python3/Python/getopt.c b/contrib/tools/python3/Python/getopt.c
index 4135bf1446e..f64c89fa227 100644
--- a/contrib/tools/python3/Python/getopt.c
+++ b/contrib/tools/python3/Python/getopt.c
@@ -29,10 +29,6 @@
#include <wchar.h>
#include "pycore_getopt.h"
-#ifdef __cplusplus
-extern "C" {
-#endif
-
int _PyOS_opterr = 1; /* generate error messages */
Py_ssize_t _PyOS_optind = 1; /* index into argv array */
const wchar_t *_PyOS_optarg = NULL; /* optional argument */
@@ -172,8 +168,3 @@ int _PyOS_GetOpt(Py_ssize_t argc, wchar_t * const *argv, int *longindex)
return option;
}
-
-#ifdef __cplusplus
-}
-#endif
-