summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/devctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/src/devctl.c')
-rw-r--r--c/src/exec/posix/src/devctl.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/c/src/exec/posix/src/devctl.c b/c/src/exec/posix/src/devctl.c
deleted file mode 100644
index 7caf475784..0000000000
--- a/c/src/exec/posix/src/devctl.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* devctl.c
- *
- * $Id$
- */
-
-#include <devctl.h>
-
-#include <rtems/system.h>
-
-#ifdef NOT_IMPLEMENTED_YET
-
-/*PAGE
- *
- * 21.2.1 Control a Device, P1003.4b/D8, p. 65
- */
-
-int devctl(
- int filedes,
- void *dev_data_ptr,
- size_t nbyte,
- int *dev_info_ptr
-)
-{
- return POSIX_NOT_IMPLEMENTED();
-}
-
-#endif