diff options
author | Guido van Rossum <guido@python.org> | 1998-08-04 22:46:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-08-04 22:46:29 (GMT) |
commit | 1a8791e0b875df8e9428c2d9969f64e5967ac0b4 (patch) | |
tree | 4c0a38c8dbfc45a9b2d7343c17c4a969a8718162 /Python/frozenmain.c | |
parent | 7d896ab1bbd5e15be7ae9203ead47f4f500a6a81 (diff) | |
download | cpython-1a8791e0b875df8e9428c2d9969f64e5967ac0b4.zip cpython-1a8791e0b875df8e9428c2d9969f64e5967ac0b4.tar.gz cpython-1a8791e0b875df8e9428c2d9969f64e5967ac0b4.tar.bz2 |
Changes for BeOS, QNX and long long, by Chris Herborth.
Diffstat (limited to 'Python/frozenmain.c')
-rw-r--r-- | Python/frozenmain.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Python/frozenmain.c b/Python/frozenmain.c index ab9d60d..cb46d65 100644 --- a/Python/frozenmain.c +++ b/Python/frozenmain.c @@ -42,6 +42,11 @@ extern void PyWinFreeze_ExeTerm(); #include <unistd.h> /* For isatty() */ #endif +/* For isatty()'s proto. - [cjh] */ +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + /* Main program */ int |