summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/devnull/devnull.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/devnull/devnull.h')
-rw-r--r--cpukit/libmisc/devnull/devnull.h84
1 files changed, 0 insertions, 84 deletions
diff --git a/cpukit/libmisc/devnull/devnull.h b/cpukit/libmisc/devnull/devnull.h
deleted file mode 100644
index 39081f478b..0000000000
--- a/cpukit/libmisc/devnull/devnull.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/**
- * @file
- *
- * @brief RTEMS /dev/null Device Driver
- *
- * This include file defines the interface to the RTEMS /dev/null
- * device driver.
- */
-
-/*
- * Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
- *
- * COPYRIGHT (c) 1989-2000.
- * 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.org/license/LICENSE.
- */
-
-#ifndef _RTEMS_DEVNULL_H
-#define _RTEMS_DEVNULL_H
-
-#include <rtems/io.h>
-
-/**
- * @defgroup libmisc_devnull Null Device Driver
- *
- * @ingroup libmisc
- */
-/**@{*/
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define DEVNULL_DRIVER_TABLE_ENTRY \
- { null_initialize, null_open, null_close, null_read, \
- null_write, null_control }
-
-#define NULL_SUCCESSFUL RTEMS_SUCCESSFUL
-
-rtems_device_driver null_initialize(
- rtems_device_major_number,
- rtems_device_minor_number,
- void *
-);
-
-rtems_device_driver null_open(
- rtems_device_major_number,
- rtems_device_minor_number,
- void *
-);
-
-rtems_device_driver null_close(
- rtems_device_major_number,
- rtems_device_minor_number,
- void *
-);
-
-rtems_device_driver null_read(
- rtems_device_major_number,
- rtems_device_minor_number,
- void *
-);
-
-rtems_device_driver null_write(
- rtems_device_major_number,
- rtems_device_minor_number,
- void *
-);
-
-rtems_device_driver null_control(
- rtems_device_major_number,
- rtems_device_minor_number,
- void *
-);
-
-#ifdef __cplusplus
-}
-#endif
-/**@}*/
-#endif
-/* end of include file */