]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * The contents of this file constitute Original Code as defined in and | |
7 | * are subject to the Apple Public Source License Version 1.1 (the | |
8 | * "License"). You may not use this file except in compliance with the | |
9 | * License. Please obtain a copy of the License at | |
10 | * http://www.apple.com/publicsource and read it before using this file. | |
11 | * | |
12 | * This Original Code and all software distributed under the License are | |
13 | * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
16 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the | |
17 | * License for the specific language governing rights and limitations | |
18 | * under the License. | |
19 | * | |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
22 | /* | |
23 | * @OSF_COPYRIGHT@ | |
24 | */ | |
25 | /* | |
26 | * HISTORY | |
27 | * | |
28 | * Revision 1.1.1.1 1998/09/22 21:05:48 wsanchez | |
29 | * Import of Mac OS X kernel (~semeria) | |
30 | * | |
31 | * Revision 1.1.1.1 1998/03/07 02:25:59 wsanchez | |
32 | * Import of OSF Mach kernel (~mburg) | |
33 | * | |
34 | * Revision 1.2.10.1 1996/11/29 16:59:52 stephen | |
35 | * nmklinux_1.0b3_shared into pmk1.1 | |
36 | * Moved contents to mach/mach_ioctl.h. | |
37 | * [96/09/18 barbou] | |
38 | * | |
39 | * Revision 1.2.6.1 1994/09/23 03:12:49 ezf | |
40 | * change marker to not FREE | |
41 | * [1994/09/22 21:58:45 ezf] | |
42 | * | |
43 | * Revision 1.2.2.2 1993/06/09 02:55:17 gm | |
44 | * Added to OSF/1 R1.3 from NMK15.0. | |
45 | * [1993/06/02 21:30:51 jeffc] | |
46 | * | |
47 | * Revision 1.2 1993/04/19 17:16:43 devrcs | |
48 | * Fixes for ANSI C | |
49 | * [1993/02/26 14:02:24 sp] | |
50 | * | |
51 | * Revision 1.1 1992/09/30 02:36:52 robert | |
52 | * Initial revision | |
53 | * | |
54 | * $EndLog$ | |
55 | */ | |
56 | /* CMU_HIST */ | |
57 | /* | |
58 | * Revision 2.5 91/10/09 16:18:46 af | |
59 | * Revision 2.4.1.1 91/09/01 15:53:00 af | |
60 | * Upgraded to BSD 4.4. | |
61 | * [91/09/01 af] | |
62 | * | |
63 | * Revision 2.4.1.1 91/09/01 15:53:00 af | |
64 | * Upgraded to BSD 4.4. | |
65 | * [91/09/01 af] | |
66 | * | |
67 | * Revision 2.4 91/05/14 17:40:04 mrt | |
68 | * Correcting copyright | |
69 | * | |
70 | * Revision 2.3 91/03/16 15:01:35 rpd | |
71 | * Fixed the definitions for ANSI C. | |
72 | * [91/02/20 rpd] | |
73 | * | |
74 | * Revision 2.2 91/02/14 15:04:02 mrt | |
75 | * Changed to new Mach copyright | |
76 | * | |
77 | * | |
78 | */ | |
79 | /* CMU_ENDHIST */ | |
80 | /* | |
81 | * Mach Operating System | |
82 | * Copyright (c) 1991 Carnegie Mellon University | |
83 | * All Rights Reserved. | |
84 | * | |
85 | * Permission to use, copy, modify and distribute this software and its | |
86 | * documentation is hereby granted, provided that both the copyright | |
87 | * notice and this permission notice appear in all copies of the | |
88 | * software, derivative works or modified versions, and any portions | |
89 | * thereof, and that both notices appear in supporting documentation. | |
90 | * | |
91 | * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" | |
92 | * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR | |
93 | * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. | |
94 | * | |
95 | * Carnegie Mellon requests users of this software to return to | |
96 | * | |
97 | * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU | |
98 | * School of Computer Science | |
99 | * Carnegie Mellon University | |
100 | * Pittsburgh PA 15213-3890 | |
101 | * | |
102 | * any improvements or extensions that they make and grant Carnegie Mellon rights | |
103 | * to redistribute these changes. | |
104 | */ | |
105 | /* | |
106 | */ | |
107 | /* | |
108 | * Format definitions for 'ioctl' commands in device definitions. | |
109 | * | |
110 | * From BSD4.4. | |
111 | */ | |
112 | ||
113 | #ifndef _SYS_IOCTL_H_ | |
114 | #define _SYS_IOCTL_H_ | |
115 | ||
116 | #include <mach/mach_ioctl.h> | |
117 | ||
118 | #endif /* _SYS_IOCTL_H_ */ |