Moved the prototype for ioctl() from <sys/ioctl.h> to <sys/ioccom.h>

so that applications don't have to include <sys/ioctl.h> just to get
a prototype for ioctl().
This commit is contained in:
Bruce Evans 1996-09-21 08:42:37 +00:00
parent 301e6a175a
commit ec16abb2c5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18440
2 changed files with 12 additions and 10 deletions

View file

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ioccom.h 8.2 (Berkeley) 3/28/94
* $Id: ioccom.h,v 1.2 1994/08/02 07:53:03 davidg Exp $
* $Id: ioccom.h,v 1.3 1996/05/02 14:20:59 phk Exp $
*/
#ifndef _SYS_IOCCOM_H_
@ -62,4 +62,14 @@
/* this should be _IORW, but stdio got there first */
#define _IOWR(g,n,t) _IOC(IOC_INOUT, (g), (n), sizeof(t))
#ifndef KERNEL
#include <sys/cdefs.h>
__BEGIN_DECLS
int ioctl __P((int, unsigned long, ...));
__END_DECLS
#endif /* !KERNEL */
#endif /* !_SYS_IOCCOM_H_ */

View file

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)ioctl.h 8.6 (Berkeley) 3/28/94
* $Id: ioctl.h,v 1.2 1994/08/02 07:53:04 davidg Exp $
* $Id: ioctl.h,v 1.3 1996/01/30 23:00:43 mpp Exp $
*/
#ifndef _SYS_IOCTL_H_
@ -63,14 +63,6 @@ struct ttysize {
#include <sys/filio.h>
#include <sys/sockio.h>
#ifndef KERNEL
#include <sys/cdefs.h>
__BEGIN_DECLS
int ioctl __P((int, unsigned long, ...));
__END_DECLS
#endif /* !KERNEL */
#endif /* !_SYS_IOCTL_H_ */
/*