diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2017-05-24 09:25:13 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2017-05-24 09:25:13 +0000 |
commit | a07c3aeb73123a9282d528ad8a1afba2f0b1a0dd (patch) | |
tree | e2c9059361a59e9ffd2e97aa6ff0ec84ceb6b3f5 /include | |
parent | 27bdfd5a8a63488364453d873673630948bc5a41 (diff) | |
download | src-test2-a07c3aeb73123a9282d528ad8a1afba2f0b1a0dd.tar.gz src-test2-a07c3aeb73123a9282d528ad8a1afba2f0b1a0dd.zip |
Notes
Diffstat (limited to 'include')
-rw-r--r-- | include/termios.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/termios.h b/include/termios.h index ed8e328d7fd9..333ab1cd6cc5 100644 --- a/include/termios.h +++ b/include/termios.h @@ -42,12 +42,12 @@ typedef __pid_t pid_t; #define _PID_T_DECLARED #endif -#ifndef _POSIX_SOURCE +#if __BSD_VISIBLE #define OXTABS TAB3 #define MDMBUF CCAR_OFLOW #endif -#ifndef _POSIX_SOURCE +#if __BSD_VISIBLE #define CCEQ(val, c) ((c) == (val) && (val) != _POSIX_VDISABLE) #endif @@ -57,7 +57,7 @@ typedef __pid_t pid_t; #define TCSANOW 0 /* make change immediate */ #define TCSADRAIN 1 /* drain output, then change */ #define TCSAFLUSH 2 /* drain output, flush input */ -#ifndef _POSIX_SOURCE +#if __BSD_VISIBLE #define TCSASOFT 0x10 /* flag - don't alter h.w. state */ #endif @@ -95,7 +95,7 @@ __END_DECLS #endif /* !_TERMIOS_H_ */ -#ifndef _POSIX_SOURCE +#if __BSD_VISIBLE #include <sys/ttycom.h> #include <sys/ttydefaults.h> #endif |