1314817Sngie/*-
2272343Sngie * SPDX-License-Identifier: BSD-3-Clause
3272343Sngie *
4272343Sngie * Copyright (c) 1982, 1986, 1990, 1993, 1994
5272343Sngie *	The Regents of the University of California.  All rights reserved.
6272343Sngie * (c) UNIX System Laboratories, Inc.
7272343Sngie * All or some portions of this file are derived from material licensed
8272343Sngie * to the University of California by American Telephone and Telegraph
9272343Sngie * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10272343Sngie * the permission of UNIX System Laboratories, Inc.
11272343Sngie *
12272343Sngie * Redistribution and use in source and binary forms, with or without
13272343Sngie * modification, are permitted provided that the following conditions
14272343Sngie * are met:
15272343Sngie * 1. Redistributions of source code must retain the above copyright
16272343Sngie *    notice, this list of conditions and the following disclaimer.
17272343Sngie * 2. Redistributions in binary form must reproduce the above copyright
18272343Sngie *    notice, this list of conditions and the following disclaimer in the
19272343Sngie *    documentation and/or other materials provided with the distribution.
20272343Sngie * 3. Neither the name of the University nor the names of its contributors
21272343Sngie *    may be used to endorse or promote products derived from this software
22272343Sngie *    without specific prior written permission.
23272343Sngie *
24314817Sngie * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25272343Sngie * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26272343Sngie * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27272343Sngie * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28272343Sngie * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29272343Sngie * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30272343Sngie * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31272343Sngie * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32272343Sngie * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33272343Sngie * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34272343Sngie * SUCH DAMAGE.
35272343Sngie */
36272343Sngie
37272343Sngie#ifndef	_SYS_IOCTL_H_
38272343Sngie#define	_SYS_IOCTL_H_
39272343Sngie
40272343Sngie#ifdef _KERNEL
41272343Sngie#error "Don't #include ioctl.h in the kernel.  Include xxxio.h instead."
42272343Sngie#endif /* _KERNEL */
43272343Sngie
44272343Sngie#include <sys/ioccom.h>
45272343Sngie
46272343Sngie#include <sys/filio.h>
47272343Sngie#include <sys/sockio.h>
48272343Sngie#include <sys/ttycom.h>
49272343Sngie
50272343Sngie#endif /* !_SYS_IOCTL_H_ */
51272343Sngie