diff options
author | Guido van Rossum <guido@python.org> | 1994-09-28 15:46:03 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-09-28 15:46:03 (GMT) |
commit | 2929527aede2eab56d39cf5f5244f997479cfe9d (patch) | |
tree | 3cc4e5fa514ec722aa19a40b1e849f375c756475 /Parser/intrcheck.c | |
parent | c5d92e12717d49f94820dd1524a75e771b57ad59 (diff) | |
download | cpython-2929527aede2eab56d39cf5f5244f997479cfe9d.zip cpython-2929527aede2eab56d39cf5f5244f997479cfe9d.tar.gz cpython-2929527aede2eab56d39cf5f5244f997479cfe9d.tar.bz2 |
* Parser/intrcheck.c: make 'interrupted' global (forgot for
whom...)
Diffstat (limited to 'Parser/intrcheck.c')
-rw-r--r-- | Parser/intrcheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c index 12cfe61..e9b0134 100644 --- a/Parser/intrcheck.c +++ b/Parser/intrcheck.c @@ -174,7 +174,7 @@ intrcheck() #include <string.h> #include <signal.h> -static int interrupted; +int interrupted; /* ARGSUSED */ static RETSIGTYPE |