From 7befb9966e1435475a9d2e9d3cc3670564ce77aa Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Tue, 10 Feb 2004 16:50:21 +0000 Subject: remove support for missing ANSI C header files (limits.h, stddef.h, etc). --- Python/pythonrun.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index eedb562b3a..224b3c8d66 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -13,9 +13,7 @@ #include "eval.h" #include "marshal.h" -#ifdef HAVE_SIGNAL_H #include -#endif #ifdef HAVE_LANGINFO_H #include @@ -1563,7 +1561,6 @@ Py_Exit(int sts) static void initsigs(void) { -#ifdef HAVE_SIGNAL_H #ifdef SIGPIPE signal(SIGPIPE, SIG_IGN); #endif @@ -1573,7 +1570,6 @@ initsigs(void) #ifdef SIGXFSZ signal(SIGXFSZ, SIG_IGN); #endif -#endif /* HAVE_SIGNAL_H */ PyOS_InitInterrupts(); /* May imply initsignal() */ } -- cgit v1.2.1