Change to strnlen() and strncpy() to avoid problems from unbounded strings
[yaffs2.git] / direct / yaffsfs.h
index c05e02a6c2cf6603a7902c6e0f0e81dcb4d308bb..8a7cb811b186eb9a97647d46f81325ce6fbc5ae5 100644 (file)
 #define ENOTEMPTY 39
 #endif
 
+#ifndef ENAMETOOLONG
+#define ENAMETOOLONG 36
+#endif
+
 #ifndef ENOMEM
 #define ENOMEM 12
 #endif
@@ -216,7 +220,9 @@ struct yaffs_stat{
 
 int yaffs_open(const YCHAR *path, int oflag, int mode) ;
 int yaffs_close(int fd) ;
-int yaffs_flush(int fd) ;
+int yaffs_fsync(int fd) ;
+int yaffs_fdatasync(int fd) ;
+int yaffs_flush(int fd) ; /* same as yaffs_fsync() */
 
 int yaffs_access(const YCHAR *path, int amode);