Changeset af5037d in mainline
- Timestamp:
- 2019-05-27T12:37:32Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 31a566b, 4d51c60, 52acfab
- Parents:
- 95174bf
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-14 19:42:12)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-05-27 12:37:32)
- Location:
- uspace/lib/posix/include/posix
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/stdio.h
r95174bf raf5037d 61 61 FILE *__restrict__ stream); 62 62 63 #if def _LARGEFILE64_SOURCE63 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE) 64 64 extern int fseeko64(FILE *stream, off64_t offset, int whence); 65 65 extern off64_t ftello64(FILE *stream); -
uspace/lib/posix/include/posix/sys/types.h
r95174bf raf5037d 55 55 #endif 56 56 57 #if def _LARGEFILE64_SOURCE57 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE) 58 58 typedef int64_t off64_t; 59 59 #endif -
uspace/lib/posix/include/posix/unistd.h
r95174bf raf5037d 86 86 extern int dup2(int fildes, int fildes2); 87 87 88 #if def _LARGEFILE64_SOURCE88 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE) 89 89 extern off64_t lseek64(int fildes, off64_t offset, int whence); 90 90 extern int ftruncate64(int fildes, off64_t length);
Note:
See TracChangeset
for help on using the changeset viewer.