]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/ioctl_compat.h
xnu-1504.3.12.tar.gz
[apple/xnu.git] / bsd / sys / ioctl_compat.h
index ae5422533ba370a31bc18dcbda35b07f95f56d88..55537e558fce003bb8d58aa96bda6bed9d0e6ad2 100644 (file)
@@ -1,16 +1,19 @@
 /*
  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
- * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
+ * compliance with the License. The rights granted to you under the License
+ * may not be used to create, or enable the creation or redistribution of,
+ * unlawful or unlicensed copies of an Apple operating system, or to
+ * circumvent, violate, or enable the circumvention or violation of, any
+ * terms of an Apple operating system software license agreement.
+ * 
+ * Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this file.
  * 
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
@@ -20,7 +23,7 @@
  * Please see the License for the specific language governing rights and
  * limitations under the License.
  * 
- * @APPLE_LICENSE_HEADER_END@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
 /*
@@ -126,26 +129,33 @@ struct sgttyb {
 #define                EVENP           0x00000080      /* get/send even parity */
 #define                ANYP            0x000000c0      /* get any parity/send none */
 #define                NLDELAY         0x00000300      /* \n delay */
+#define                TBDELAY         0x00000c00      /* horizontal tab delay */
+#define                XTABS           0x00000c00      /* expand tabs on output */
+#define                CRDELAY         0x00003000      /* \r delay */
+#define                VTDELAY         0x00004000      /* vertical tab delay */
+#define                BSDELAY         0x00008000      /* \b delay */
+#ifndef        _SYS_TERMIOS_H_
+/*
+ * These manifest constants have the same names as those in <sys/termios.h>,
+ * so you are not permitted to have both definitions in scope simultaneously
+ * in the same compilation unit.
+ */
 #define                        NL0     0x00000000
 #define                        NL1     0x00000100      /* tty 37 */
 #define                        NL2     0x00000200      /* vt05 */
 #define                        NL3     0x00000300
-#define                TBDELAY         0x00000c00      /* horizontal tab delay */
 #define                        TAB0    0x00000000
 #define                        TAB1    0x00000400      /* tty 37 */
 #define                        TAB2    0x00000800
-#define                XTABS           0x00000c00      /* expand tabs on output */
-#define                CRDELAY         0x00003000      /* \r delay */
 #define                        CR0     0x00000000
 #define                        CR1     0x00001000      /* tn 300 */
 #define                        CR2     0x00002000      /* tty 37 */
 #define                        CR3     0x00003000      /* concept 100 */
-#define                VTDELAY         0x00004000      /* vertical tab delay */
 #define                        FF0     0x00000000
 #define                        FF1     0x00004000      /* tty 37 */
-#define                BSDELAY         0x00008000      /* \b delay */
 #define                        BS0     0x00000000
 #define                        BS1     0x00008000
+#endif /* !_SYS_TERMIOS_H_ */
 #define                ALLDELAY        (NLDELAY|TBDELAY|CRDELAY|VTDELAY|BSDELAY)
 #define                CRTBS           0x00010000      /* do backspacing for crt */
 #define                PRTERA          0x00020000      /* \ ... / erase */