]> git.proxmox.com Git - mirror_zfs.git/blobdiff - lib/libspl/include/sys/file.h
cstyle: Resolve C style issues
[mirror_zfs.git] / lib / libspl / include / sys / file.h
index 9aaba35befb5a349ec15c6beee3cc418781421b6..163a4dca665a0a388808bc592c5190cd108e7049 100644 (file)
  */
 
 #ifndef _LIBSPL_SYS_FILE_H
-#define _LIBSPL_SYS_FILE_H
+#define        _LIBSPL_SYS_FILE_H
 
 #include_next <sys/file.h>
 
 #include <sys/user.h>
 
-#define FREAD   1
-#define FWRITE  2
-//#define FAPPEND  8
+#define        FREAD   1
+#define        FWRITE  2
+// #define FAPPEND  8
 
-#define FCREAT  O_CREAT
-#define FTRUNC  O_TRUNC
-#define FOFFMAX O_LARGEFILE
-#define FSYNC   O_SYNC
-#define FDSYNC  O_DSYNC
-#define FRSYNC  O_RSYNC
-#define FEXCL   O_EXCL
+#define        FCREAT  O_CREAT
+#define        FTRUNC  O_TRUNC
+#define        FOFFMAX O_LARGEFILE
+#define        FSYNC   O_SYNC
+#define        FDSYNC  O_DSYNC
+#define        FRSYNC  O_RSYNC
+#define        FEXCL   O_EXCL
 
-#define FNODSYNC        0x10000 /* fsync pseudo flag */
-#define FNOFOLLOW       0x20000 /* don't follow symlinks */
-#define FIGNORECASE     0x80000 /* request case-insensitive lookups */
+#define        FNODSYNC        0x10000 /* fsync pseudo flag */
+#define        FNOFOLLOW       0x20000 /* don't follow symlinks */
+#define        FIGNORECASE     0x80000 /* request case-insensitive lookups */
 
 #endif