Changeset 97b1dfc2 in mainline for uspace/lib/posix/include/posix/sys/types.h
- Timestamp:
- 2018-09-24T15:36:21Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 34c76e2f
- Parents:
- 631281d
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-24 15:02:32)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-24 15:36:21)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/sys/types.h
r631281d r97b1dfc2 43 43 typedef unsigned int uid_t; 44 44 typedef unsigned int gid_t; 45 typedef int64_t off_t;46 45 typedef long blksize_t; 47 46 typedef long blkcnt_t; … … 49 48 typedef sysarg_t dev_t; 50 49 typedef unsigned int mode_t; 50 51 #if _FILE_OFFSET_BITS == 64 52 typedef int64_t off_t; 53 #else 54 typedef long off_t; 55 #endif 56 57 #ifdef _LARGEFILE64_SOURCE 58 typedef int64_t off64_t; 59 #endif 51 60 52 61 /* PThread Types */
Note:
See TracChangeset
for help on using the changeset viewer.