summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/unixlibc_io.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/unixlibc_io.c')
-rw-r--r--cpukit/libcsupport/src/unixlibc_io.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/cpukit/libcsupport/src/unixlibc_io.c b/cpukit/libcsupport/src/unixlibc_io.c
deleted file mode 100644
index eb6afa8bee..0000000000
--- a/cpukit/libcsupport/src/unixlibc_io.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * UNIX Port C Library Support -- IO Manager Stubs
- *
- * COPYRIGHT (c) 1989-2007.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems.h>
-
-rtems_status_code rtems_io_register_name(
- const char *device_name,
- rtems_device_major_number major,
- rtems_device_minor_number minor
-)
-{
- return 0; /* not supported */
-}
-
-rtems_status_code rtems_io_lookup_name(
- const char *name,
- rtems_driver_name_t *device_info
-)
-{
- return 0; /* not supported */
-}