diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-02-21 11:07:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 12:07:49 +0200 |
commit | 38b6c2acd4bba666bd64779c42b9d91cbee19274 (patch) | |
tree | 97c4460259dbe1ab1576c8f195513f9af87d1d3e /Modules/_sqlite/statement.c | |
parent | 4cf7bb8e22bf37e6d65bf4cb5618d09c4a8ad612 (diff) | |
download | cpython-38b6c2acd4bba666bd64779c42b9d91cbee19274.tar.gz cpython-38b6c2acd4bba666bd64779c42b9d91cbee19274.zip |
bpo-43269: Remove redundant extern keywords (GH-24605)
Diffstat (limited to 'Modules/_sqlite/statement.c')
-rw-r--r-- | Modules/_sqlite/statement.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/_sqlite/statement.c b/Modules/_sqlite/statement.c index f179eee16f4..57026270e1e 100644 --- a/Modules/_sqlite/statement.c +++ b/Modules/_sqlite/statement.c @@ -480,7 +480,8 @@ static PyType_Spec stmt_spec = { }; PyTypeObject *pysqlite_StatementType = NULL; -extern int pysqlite_statement_setup_types(PyObject *module) +int +pysqlite_statement_setup_types(PyObject *module) { pysqlite_StatementType = (PyTypeObject *)PyType_FromModuleAndSpec(module, &stmt_spec, NULL); if (pysqlite_StatementType == NULL) { |