summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/imfs_fchmod.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-09-14 21:01:39 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-09-14 21:01:39 +0000
commitd32359a77870a330080ff22a67ab07b0aa2ff724 (patch)
treea514e916cc5a7bd251eb174d1dc76fe4b9357c46 /cpukit/libfs/src/imfs/imfs_fchmod.c
parent2002-09-14 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-d32359a77870a330080ff22a67ab07b0aa2ff724.tar.bz2
2002-09-14 Joel Sherrill <joel@OARcorp.com>
* src/dosfs/fat.c, src/imfs/deviceio.c, src/imfs/imfs.h, src/imfs/imfs_directory.c, src/imfs/imfs_fchmod.c, src/imfs/memfile.c: Eliminated warnings. A lot of this focus was on changing read and write entry points to return ssize_t as read(2) and write(2) now do.
Diffstat (limited to '')
-rw-r--r--cpukit/libfs/src/imfs/imfs_fchmod.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpukit/libfs/src/imfs/imfs_fchmod.c b/cpukit/libfs/src/imfs/imfs_fchmod.c
index cf7c644793..0b14da1b43 100644
--- a/cpukit/libfs/src/imfs/imfs_fchmod.c
+++ b/cpukit/libfs/src/imfs/imfs_fchmod.c
@@ -30,6 +30,13 @@ int IMFS_fchmod(
#if defined(RTEMS_POSIX_API)
uid_t st_uid;
#endif
+ int IMFS_memfile_write(
+ IMFS_jnode_t *the_jnode,
+ off_t start,
+ const unsigned char *source,
+ unsigned int length
+ );
+
jnode = loc->node_access;