Changeset b4d08a4 in mainline
- Timestamp:
- 2017-06-09T21:39:05Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e299dbe
- Parents:
- 98a3879
- Location:
- uspace
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sys/types.h
r98a3879 rb4d08a4 40 40 typedef uint32_t fourcc_t; 41 41 42 typedef int16_t unaligned_int16_t __attribute__ ((aligned(1)));43 typedef int32_t unaligned_int32_t __attribute__ ((aligned(1)));44 typedef int64_t unaligned_int64_t __attribute__ ((aligned(1)));45 46 typedef uint16_t unaligned_uint16_t __attribute__ ((aligned(1)));47 typedef uint32_t unaligned_uint32_t __attribute__ ((aligned(1)));48 typedef uint64_t unaligned_uint64_t __attribute__ ((aligned(1)));49 50 42 #endif 51 43 -
uspace/srv/fs/fat/fat_dentry.h
r98a3879 rb4d08a4 37 37 #include <stdint.h> 38 38 #include <stdbool.h> 39 #include <sys/types.h> 39 #include <stddef.h> 40 #include <unaligned.h> 40 41 41 42 #define IS_D_CHAR(ch) (isalnum(ch) || ch == '_')
Note:
See TracChangeset
for help on using the changeset viewer.