summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/imfs_handlers_device.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 20:20:13 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-02 20:20:13 +0000
commitb568ccb7455fa29df50205d5fc13802598ced1d6 (patch)
tree83690f72a7978f78a2181dddf6b923c8001ee6cf /c/src/lib/libc/imfs_handlers_device.c
parentSplit object.c into multiple files. (diff)
downloadrtems-b568ccb7455fa29df50205d5fc13802598ced1d6.tar.bz2
The object memfile.o was being included in the miniIMFS even though it
should not have been. This required that IMFS_rmnod be split into three separate (per file type) routines to avoid dependencies. In the end, a miniIMFS application is 6K smaller than one using the full IMFS.
Diffstat (limited to 'c/src/lib/libc/imfs_handlers_device.c')
-rw-r--r--c/src/lib/libc/imfs_handlers_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/lib/libc/imfs_handlers_device.c b/c/src/lib/libc/imfs_handlers_device.c
index b6b9c808a0..24b7ffa5bb 100644
--- a/c/src/lib/libc/imfs_handlers_device.c
+++ b/c/src/lib/libc/imfs_handlers_device.c
@@ -34,5 +34,5 @@ rtems_filesystem_file_handlers_r IMFS_device_handlers = {
NULL, /* fsync */
NULL, /* fdatasync */
NULL, /* fcntl */
- IMFS_rmnod
+ device_rmnod
};