aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/ioccom.h
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-04-09 02:22:13 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-04-09 02:22:13 +0000
commit1de038230a732c4d68c57a9c181e8f8e99055d22 (patch)
tree788cfbd5db15d1657b65b39170fc27af41b72048 /sys/sys/ioccom.h
parent6409bf927138b2b2f705e1af2f099df0f91e3246 (diff)
downloadsrc-1de038230a732c4d68c57a9c181e8f8e99055d22.tar.gz
src-1de038230a732c4d68c57a9c181e8f8e99055d22.zip
Back out revision 1.11 which wrapped the ioctl prototype w/()'s.
While it may have allowed the XFree86 4 port to build; it killed TONS of other ports. The XFree86 4 can be patched to not use its macro a lot easier than figuring how to deal with 1000 other now-broken ports.
Notes
Notes: svn path=/head/; revision=94261
Diffstat (limited to 'sys/sys/ioccom.h')
-rw-r--r--sys/sys/ioccom.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/sys/ioccom.h b/sys/sys/ioccom.h
index b767e573d81a..c6e00df0e3f8 100644
--- a/sys/sys/ioccom.h
+++ b/sys/sys/ioccom.h
@@ -67,12 +67,7 @@
#include <sys/cdefs.h>
__BEGIN_DECLS
-/*
- * use parens around the ioctl so that people can define ioctl as a macro.
- * Note: This will go away in the future, as soon as the current abusers
- * have been fixed.
- */
-int (ioctl)(int, unsigned long, ...);
+int ioctl(int, unsigned long, ...);
__END_DECLS
#endif