yaffs direct: Fix error handling in yaffs_access
[yaffs2.git] / yportenv_multi.h
index 3295ca0aeebc13e118001cdebe94ef38eec835a0..ec43fd588db3a7ee40041f58ab0aabcbfd2a7281 100644 (file)
@@ -13,7 +13,6 @@
  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
  */
 
-
 #ifndef __YPORTENV_H__
 #define __YPORTENV_H__
 
@@ -67,7 +66,6 @@
 #define yaffs_toupper(a)       toupper(a)
 #define yaffs_sort(base, n, sz, cmp_fn) sort(base, n, sz, cmp_fn, NULL)
 
-
 #define Y_INLINE __inline__
 
 #define YAFFS_LOSTNFOUND_NAME          "lost+found"
 #include "stdio.h"
 #include "string.h"
 
-
 #define YMALLOC(x) malloc(x)
 #define YFREE(x)   free(x)
 #define YMALLOC_ALT(x) malloc(x)
 #define O_RDWR         02
 #endif
 
-#ifndef O_CREAT                
+#ifndef O_CREAT
 #define O_CREAT        0100
 #endif
 
 #define EACCES 13
 #endif
 
-#ifndef EXDEV  
+#ifndef EXDEV
 #define EXDEV  18
 #endif
 
 #define EISDIR 21
 #endif
 
-
 // Mode flags
 
 #ifndef S_IFMT
 #define S_IFREG                0100000
 #endif
 
-#ifndef S_IREAD 
+#ifndef S_IREAD
 #define S_IREAD                0000400
 #endif
 
 } while (0)
 #endif
 
-
 #endif