summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2017-06-07 11:43:36 +0000
committerkib <kib@FreeBSD.org>2017-06-07 11:43:36 +0000
commit04b40b20eb50f74762bf81b69351c9f1c0232dac (patch)
treecc054eb732ad2f71fe3472555d98465680546897 /include
parent7fe77620e6fe4a9d4bfe8dc30529a11a89c5ea55 (diff)
downloadFreeBSD-src-04b40b20eb50f74762bf81b69351c9f1c0232dac.zip
FreeBSD-src-04b40b20eb50f74762bf81b69351c9f1c0232dac.tar.gz
MFC r318780:
Use __BSD_VISIBLE test instead checking for absense of _POSIX_SOURCE.
Diffstat (limited to 'include')
-rw-r--r--include/termios.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/termios.h b/include/termios.h
index e41da9f..6b6fbd9 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
OpenPOWER on IntegriCloud