summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libfs/src/imfs
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>1999-11-05 22:24:56 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>1999-11-05 22:24:56 +0000
commit7f6a07504e88e990820d90bf02e6316767d6e3b2 (patch)
treedb438a45ae587028eeff25cfaf477124223d0daf /c/src/exec/libfs/src/imfs
parentchanged version to 19991105 (diff)
downloadrtems-7f6a07504e88e990820d90bf02e6316767d6e3b2.tar.bz2
Moved imfs set handlers prototype to the imfs.h file.
Diffstat (limited to 'c/src/exec/libfs/src/imfs')
-rw-r--r--c/src/exec/libfs/src/imfs/imfs.h4
-rw-r--r--c/src/exec/libfs/src/imfs/imfs_fsunmount.c6
2 files changed, 4 insertions, 6 deletions
diff --git a/c/src/exec/libfs/src/imfs/imfs.h b/c/src/exec/libfs/src/imfs/imfs.h
index ff76bcd04b..0a82aabfce 100644
--- a/c/src/exec/libfs/src/imfs/imfs.h
+++ b/c/src/exec/libfs/src/imfs/imfs.h
@@ -277,6 +277,10 @@ int IMFS_stat(
struct stat *buf /* OUT */
);
+int IMFS_Set_handlers(
+ rtems_filesystem_location_info_t *loc
+);
+
int IMFS_evaluate_link(
rtems_filesystem_location_info_t *node, /* IN/OUT */
int flags /* IN */
diff --git a/c/src/exec/libfs/src/imfs/imfs_fsunmount.c b/c/src/exec/libfs/src/imfs/imfs_fsunmount.c
index 9ca5f4c9fe..59046f13a9 100644
--- a/c/src/exec/libfs/src/imfs/imfs_fsunmount.c
+++ b/c/src/exec/libfs/src/imfs/imfs_fsunmount.c
@@ -42,12 +42,6 @@
#define jnode_get_first_child( jnode ) \
((IMFS_jnode_t *)( Chain_Head( jnode_get_control( jnode ) )->next))
-/* XXX should be in a more public place */
-
-extern int IMFS_Set_handlers(
- rtems_filesystem_location_info_t *loc
-);
-
int IMFS_fsunmount(
rtems_filesystem_mount_table_entry_t *temp_mt_entry
)