Changeset 7354b5e in mainline for uspace/lib
- Timestamp:
- 2017-06-10T10:06:39Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63e27ef
- Parents:
- e299dbe
- Location:
- uspace/lib
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/block/block.c
re299dbe r7354b5e 51 51 #include <malloc.h> 52 52 #include <stdio.h> 53 #include <sys/typefmt.h>54 53 #include <stacktrace.h> 54 #include <offset.h> 55 #include <inttypes.h> 55 56 #include "block.h" 56 57 -
uspace/lib/c/include/offset.h
re299dbe r7354b5e 36 36 #define LIBC_OFFSET_H_ 37 37 38 #include <libarch/types.h>39 38 #include <stdint.h> 40 39 … … 47 46 #define AOFF64_MAX UINT64_MAX 48 47 48 /* off64_t, aoff64_t */ 49 #define PRIdOFF64 PRId64 50 #define PRIuOFF64 PRIu64 51 #define PRIxOFF64 PRIx64 52 #define PRIXOFF64 PRIX64 49 53 50 54 /** Relative offset */ -
uspace/lib/posix/include/posix/sys/types.h
re299dbe r7354b5e 44 44 #include "libc/sys/time.h" 45 45 46 #include <libarch/types.h> 47 46 48 typedef unsigned int __POSIX_DEF__(ino_t); 47 49 typedef unsigned int __POSIX_DEF__(nlink_t);
Note:
See TracChangeset
for help on using the changeset viewer.