Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lfs.h
diff options
context:
space:
mode:
authorChristopher Haster <chaster@utexas.edu>2017-03-26 01:02:16 +0300
committerChristopher Haster <chaster@utexas.edu>2017-03-26 03:23:30 +0300
commitafa4ad82544048581913e0a273745acb3886dc84 (patch)
treed4222c078fd9c90e18e9d0d1b801f7846262de54 /lfs.h
parent84a57642e53616e1b9f8050e58dd21eecf168184 (diff)
Added a rudimentary test framework
Tests can be found in 'tests/test_blah.sh' Tests can be run with 'make test'
Diffstat (limited to 'lfs.h')
-rw-r--r--lfs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lfs.h b/lfs.h
index 2f9b296..88984cf 100644
--- a/lfs.h
+++ b/lfs.h
@@ -31,11 +31,11 @@ enum lfs_open_flags {
LFS_O_RDONLY = 0,
LFS_O_WRONLY = 1,
LFS_O_RDWR = 2,
- LFS_O_CREAT = 0x0040,
- LFS_O_EXCL = 0x0080,
- LFS_O_TRUNC = 0x0200,
- LFS_O_APPEND = 0x0400,
- LFS_O_SYNC = 0x1000,
+ LFS_O_CREAT = 0x020,
+ LFS_O_EXCL = 0x040,
+ LFS_O_TRUNC = 0x080,
+ LFS_O_APPEND = 0x100,
+ LFS_O_SYNC = 0x200,
};