diff options
author | Guido van Rossum <guido@python.org> | 1992-01-19 16:29:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-01-19 16:29:05 (GMT) |
commit | 189e8f9380241751df168ca5be4cbbcfdb0b3651 (patch) | |
tree | 357ef0b91184d725ee77d33c5286e8f3c5e15163 /Parser | |
parent | 2b16a6feff045fa61da111219023b2e7c8107788 (diff) | |
download | cpython-189e8f9380241751df168ca5be4cbbcfdb0b3651.zip cpython-189e8f9380241751df168ca5be4cbbcfdb0b3651.tar.gz cpython-189e8f9380241751df168ca5be4cbbcfdb0b3651.tar.bz2 |
Added a header file.
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/intrcheck.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c index fdd27b9..a3db360 100644 --- a/Parser/intrcheck.c +++ b/Parser/intrcheck.c @@ -31,6 +31,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define macintosh #endif +#include "PROTO.h" +#include "intrcheck.h" + #ifdef MSDOS @@ -69,6 +72,7 @@ intrcheck() static int interrupted; +static SIGTYPE intcatcher PROTO((int)); static SIGTYPE intcatcher(sig) int sig; |