Module Name: src
Committed By: dholland
Date: Sun Jul 31 21:34:53 UTC 2016
Modified Files:
src/sys/sys: termios.h
Log Message:
PR 38290 Adam Hoka: IXANY should exist for _XOPEN_SOURCE
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/sys/termios.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/termios.h
diff -u src/sys/sys/termios.h:1.32 src/sys/sys/termios.h:1.33
--- src/sys/sys/termios.h:1.32 Thu Jul 11 16:46:06 2013
+++ src/sys/sys/termios.h Sun Jul 31 21:34:53 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: termios.h,v 1.32 2013/07/11 16:46:06 christos Exp $ */
+/* $NetBSD: termios.h,v 1.33 2016/07/31 21:34:53 dholland Exp $ */
/*
* Copyright (c) 1988, 1989, 1993, 1994
@@ -98,7 +98,7 @@
#define ICRNL 0x00000100U /* map CR to NL (ala CRMOD) */
#define IXON 0x00000200U /* enable output flow control */
#define IXOFF 0x00000400U /* enable input flow control */
-#if defined(_NETBSD_SOURCE)
+#if defined(_XOPEN_SOURCE) || defined(_NETBSD_SOURCE)
#define IXANY 0x00000800U /* any char will restart after stop */
#endif
#if defined(_NETBSD_SOURCE)