summaryrefslogtreecommitdiffstats
path: root/c/src/libnetworking/sys/ioccom.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-06-14 20:22:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-06-14 20:22:31 +0000
commit9b05600b2cc0407688548fe479fecb7ebfb5bbee (patch)
tree35c7346dcddad669e904513b4c2db004ae97eb45 /c/src/libnetworking/sys/ioccom.h
parentAdded include of options.h since it was not being picked up (diff)
downloadrtems-9b05600b2cc0407688548fe479fecb7ebfb5bbee.tar.bz2
*** empty log message ***
Diffstat (limited to '')
-rw-r--r--c/src/lib/include/ioccom.h (renamed from c/src/libnetworking/sys/ioccom.h)5
1 files changed, 5 insertions, 0 deletions
diff --git a/c/src/libnetworking/sys/ioccom.h b/c/src/lib/include/ioccom.h
index fc22a54c6d..44db3343c8 100644
--- a/c/src/libnetworking/sys/ioccom.h
+++ b/c/src/lib/include/ioccom.h
@@ -37,6 +37,10 @@
#ifndef _SYS_IOCCOM_H_
#define _SYS_IOCCOM_H_
+/* the definitions were moved to a common placed so they could be shared */
+#include <sys/rtems_ioccom.h>
+
+#if 0
/*
* Ioctl's have the command encoded in the lower word, and the size of
* any in or out parameters in the upper word. The high 3 bits of the
@@ -61,6 +65,7 @@
#define _IOW(g,n,t) _IOC(IOC_IN, (g), (n), sizeof(t))
/* this should be _IORW, but stdio got there first */
#define _IOWR(g,n,t) _IOC(IOC_INOUT, (g), (n), sizeof(t))
+#endif
#ifndef KERNEL