From: Guido van Rossum Date: Mon, 18 Sep 1995 21:40:19 +0000 (+0000) Subject: include Python.h X-Git-Tag: v1.3~117 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=020dfe7f2e3c9d6be86ef09d0f1547e3b74d7d23;p=thirdparty%2FPython%2Fcpython.git include Python.h --- diff --git a/Python/getcopyright.c b/Python/getcopyright.c index 67b67c69e6aa..575004311e46 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 1f2acccebdd1..07b0ead31bf6 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"