diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-07 00:13:56 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-01-07 00:15:11 +0100 |
commit | 78102136e63b4bdccd06982fd8708b6832225be7 (patch) | |
tree | acf31a25e94cf31ec2ef3705d09a99b489a29b69 /term | |
parent | ad63bae03cf0eb9edced3803cbcd0cee02377050 (diff) | |
download | hurd-78102136e63b4bdccd06982fd8708b6832225be7.tar.gz hurd-78102136e63b4bdccd06982fd8708b6832225be7.tar.bz2 hurd-78102136e63b4bdccd06982fd8708b6832225be7.zip |
term: Make sure to have ttydefchars use the proper _POSIX_VDISABLE
For <sys/ttydefaults.h> to catch the proper value of _POSIX_VDISABLE,
<unistd.h> has to be included before it. <termios.h> happens to be
including it so we have to include <unistd.h> before that.
Diffstat (limited to 'term')
-rw-r--r-- | term/term.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/term/term.h b/term/term.h index 3984bd7f..c6763d06 100644 --- a/term/term.h +++ b/term/term.h @@ -43,6 +43,7 @@ #undef FLUSHO #undef PENDIN #undef NOFLSH +#include <unistd.h> #include <termios.h> #define CHAR_EOT '\004' /* C-d */ |