diff options
author | Guido van Rossum <guido@python.org> | 1994-09-28 15:46:03 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-09-28 15:46:03 +0000 |
commit | 2929527aede2eab56d39cf5f5244f997479cfe9d (patch) | |
tree | 3cc4e5fa514ec722aa19a40b1e849f375c756475 /Parser/intrcheck.c | |
parent | c5d92e12717d49f94820dd1524a75e771b57ad59 (diff) | |
download | cpython-git-2929527aede2eab56d39cf5f5244f997479cfe9d.tar.gz |
* 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 12cfe6149e..e9b0134976 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 |