diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getcopyright.c | 2 | ||||
-rw-r--r-- | Python/getversion.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Python/getcopyright.c b/Python/getcopyright.c index 67b67c69e6..575004311e 100644 --- a/Python/getcopyright.c +++ b/Python/getcopyright.c @@ -1,5 +1,7 @@ /* Return the copyright string. This is updated manually. */ +#include "Python.h" + const char * getcopyright() { diff --git a/Python/getversion.c b/Python/getversion.c index 1f2acccebd..07b0ead31b 100644 --- a/Python/getversion.c +++ b/Python/getversion.c @@ -1,5 +1,7 @@ /* Return the full version string. */ +#include "Python.h" + #include "patchlevel.h" #define VERSION "%s (%s) %s" |