From f23fc0fd0c5379a14bef3d4fb5fd53dc07217765 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 5 Jul 1993 10:31:29 +0000 Subject: * Makefile: added all: and default: targets. * many files: made some functions static; removed "extern int errno;". * frozenmain.c: fixed bugs introduced on 24 June... * flmodule.c: remove 1.5 bw compat hacks, add new functions in 2.2a (and some old functions that were omitted). * timemodule.c: added MSDOS floatsleep version . * pgenmain.c: changed exit() to goaway() and added defn of goaway(). * intrcheck.c: add hack (to UNIX only) so interrupting 3 times will exit from a hanging program. The second interrupt prints a message explaining this to the user. --- Python/compile.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Python/compile.c') diff --git a/Python/compile.c b/Python/compile.c index a8cd4e9418..0eb06cb5d5 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -39,8 +39,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "structmember.h" #include - -extern int errno; +#include #define OFF(x) offsetof(codeobject, x) -- cgit v1.2.1