diff options
| author | Skip Montanaro <[email protected]> | 2021-02-16 15:31:55 -0600 |
|---|---|---|
| committer | Skip Montanaro <[email protected]> | 2021-02-16 15:31:55 -0600 |
| commit | b23fc484036e2c492b048a5701ae0b8a93d422ae (patch) | |
| tree | 14797fa54795bcf891c51d8e0208dbd2eea7ae7d /src/regexpmodule.c | |
| parent | c7fc95b5c60eb8e2c18ecb2dad35af0d14aee920 (diff) | |
| download | python-0.9.1-patched-QoL-b23fc484036e2c492b048a5701ae0b8a93d422ae.tar.xz python-0.9.1-patched-QoL-b23fc484036e2c492b048a5701ae0b8a93d422ae.zip | |
The changes I needed to get it to build
Diffstat (limited to 'src/regexpmodule.c')
| -rw-r--r-- | src/regexpmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regexpmodule.c b/src/regexpmodule.c index 7c87217..62b22f2 100644 --- a/src/regexpmodule.c +++ b/src/regexpmodule.c @@ -38,7 +38,7 @@ typedef struct { regexp *re_prog; /* The compiled regular expression */ } regexpobject; -extern typeobject Regexptype; /* Really static, forward */ +static typeobject Regexptype; static regexpobject * newregexpobject(string, prog) |
