diff options
author | Guido van Rossum <guido@python.org> | 1996-12-02 18:27:33 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-02 18:27:33 (GMT) |
commit | fd8a393086fbf43597965d5e55bec158a094a466 (patch) | |
tree | 2e819fb69d233f219b1b93d5a4c451c1f2deec63 /Parser/intrcheck.c | |
parent | bda7ca77724b75fa196e4367ae7580d510d6ee72 (diff) | |
download | cpython-fd8a393086fbf43597965d5e55bec158a094a466.zip cpython-fd8a393086fbf43597965d5e55bec158a094a466.tar.gz cpython-fd8a393086fbf43597965d5e55bec158a094a466.tar.bz2 |
Make gcc -Wall happy
Diffstat (limited to 'Parser/intrcheck.c')
-rw-r--r-- | Parser/intrcheck.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Parser/intrcheck.c b/Parser/intrcheck.c index 5d02d17..5213573 100644 --- a/Parser/intrcheck.c +++ b/Parser/intrcheck.c @@ -125,6 +125,9 @@ intrcheck() #include <stdio.h> #include <string.h> #include <signal.h> +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif static int interrupted; |