diff options
author | Guido van Rossum <guido@python.org> | 1998-08-04 22:53:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-08-04 22:53:56 (GMT) |
commit | bcc207484a0f8f27a684e11194e7430c0710f66d (patch) | |
tree | 506ce2d793a619a92e78faa89032878ea4a43461 /Modules/termios.c | |
parent | 1a8791e0b875df8e9428c2d9969f64e5967ac0b4 (diff) | |
download | cpython-bcc207484a0f8f27a684e11194e7430c0710f66d.zip cpython-bcc207484a0f8f27a684e11194e7430c0710f66d.tar.gz cpython-bcc207484a0f8f27a684e11194e7430c0710f66d.tar.bz2 |
Changes for BeOS, QNX and long long, by Chris Herborth.
Diffstat (limited to 'Modules/termios.c')
-rw-r--r-- | Modules/termios.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/termios.c b/Modules/termios.c index d7afeae..e2ef5d0 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -21,6 +21,10 @@ This module should be used in conjunction with the TERMIOS module,\n\ which defines the relevant symbolic constants."; +#ifdef __BEOS__ +#include <unistd.h> +#endif + #define BAD "bad termios argument" static PyObject *TermiosError; |