summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sh/sh7045/include/null.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-01-05 13:31:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-01-05 13:31:04 +0000
commit98e1de84a33be9839380521b45e9d54dd6d1f9c4 (patch)
treead0d560c7c150f2c4078dd45922b51cf497ef846 /c/src/lib/libcpu/sh/sh7045/include/null.h
parent2001-01-05 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-98e1de84a33be9839380521b45e9d54dd6d1f9c4.tar.bz2
2001-01-05 Joel Sherrill <joel@OARcorp.com>
* /dev/null moved to libmisc. * Makefile.am, configure.in: Removed null directory. * include/Makefile.am: Removed null.h. * include/null.h, null/.cvsignore, null/Makefile.am, null/close.c, null/cntrl.c, null/init.c, null/open.c, null/read.c, null/write.c: Removed.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libcpu/sh/sh7045/include/null.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/c/src/lib/libcpu/sh/sh7045/include/null.h b/c/src/lib/libcpu/sh/sh7045/include/null.h
deleted file mode 100644
index 9ce4886c14..0000000000
--- a/c/src/lib/libcpu/sh/sh7045/include/null.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/* null.h
- *
- * Null device driver, derived from rtems' stub driver.
- *
- * Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
- *
- * COPYRIGHT (c) 1989-1998.
- * On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-#ifndef __NULL_DRIVER_h
-#define __NULL_DRIVER_h
-
-#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 */