Changeset fbf4dc1 in mainline
- Timestamp:
- 2015-09-20T19:12:13Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bea710f
- Parents:
- d6c98451
- Location:
- uspace/lib
- Files:
-
- 10 added
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/include/libarch/stdint.h
rd6c98451 rfbf4dc1 38 38 #include <libarch/common.h> 39 39 40 #define SIZE_MIN UINT32_MIN 41 #define SIZE_MAX UINT32_MAX 42 43 typedef uint32_t size_t; 40 #define SIZE_MAX UINT32_MAX 44 41 45 42 #define UINTPTR_MAX UINT32_MAX -
uspace/lib/c/arch/abs32le/include/libarch/types.h
rd6c98451 rfbf4dc1 37 37 38 38 #include <libarch/common.h> 39 #include <libarch/stddef.h> 39 40 #include <libarch/stdint.h> 40 41 -
uspace/lib/c/arch/amd64/include/libarch/stdint.h
rd6c98451 rfbf4dc1 41 41 #define SIZE_MAX UINT64_MAX 42 42 43 typedef uint64_t size_t;44 45 43 #define UINTPTR_MAX UINT64_MAX 46 44 typedef uint64_t uintptr_t; -
uspace/lib/c/arch/amd64/include/libarch/types.h
rd6c98451 rfbf4dc1 37 37 38 38 #include <libarch/common.h> 39 #include <libarch/stddef.h> 39 40 #include <libarch/stdint.h> 40 41 -
uspace/lib/c/arch/arm32/include/libarch/stdint.h
rd6c98451 rfbf4dc1 41 41 #define SIZE_MAX UINT32_MAX 42 42 43 typedef uint32_t size_t;44 45 43 #define UINTPTR_MAX UINT32_MAX 46 44 typedef uint32_t uintptr_t; -
uspace/lib/c/arch/arm32/include/libarch/types.h
rd6c98451 rfbf4dc1 38 38 39 39 #include <libarch/common.h> 40 #include <libarch/stddef.h> 40 41 #include <libarch/stdint.h> 41 42 -
uspace/lib/c/arch/ia32/include/libarch/stdint.h
rd6c98451 rfbf4dc1 41 41 #define SIZE_MAX UINT32_MAX 42 42 43 typedef uint32_t size_t;44 45 43 #define UINTPTR_MAX UINT32_MAX 46 44 typedef uint32_t uintptr_t; -
uspace/lib/c/arch/ia32/include/libarch/types.h
rd6c98451 rfbf4dc1 37 37 38 38 #include <libarch/common.h> 39 #include <libarch/stddef.h> 39 40 #include <libarch/stdint.h> 40 41 -
uspace/lib/c/arch/ia64/include/libarch/stdint.h
rd6c98451 rfbf4dc1 41 41 #define SIZE_MAX UINT64_MAX 42 42 43 typedef uint64_t size_t;44 45 43 #define UINTPTR_MAX UINT64_MAX 46 44 typedef uint64_t uintptr_t; -
uspace/lib/c/arch/ia64/include/libarch/types.h
rd6c98451 rfbf4dc1 37 37 38 38 #include <libarch/common.h> 39 #include <libarch/stddef.h> 39 40 #include <libarch/stdint.h> 40 41 -
uspace/lib/c/arch/mips32/include/libarch/stdint.h
rd6c98451 rfbf4dc1 41 41 #define SIZE_MAX UINT32_MAX 42 42 43 typedef uint32_t size_t;44 45 43 #define UINTPTR_MAX UINT32_MAX 46 44 typedef uint32_t uintptr_t; -
uspace/lib/c/arch/mips32/include/libarch/types.h
rd6c98451 rfbf4dc1 38 38 39 39 #include <libarch/common.h> 40 #include <libarch/stddef.h> 40 41 #include <libarch/stdint.h> 41 42 -
uspace/lib/c/arch/ppc32/include/libarch/stdint.h
rd6c98451 rfbf4dc1 41 41 #define SIZE_MAX UINT32_MAX 42 42 43 typedef uint32_t size_t;44 45 43 #define UINTPTR_MAX UINT32_MAX 46 44 typedef uint32_t uintptr_t; -
uspace/lib/c/arch/ppc32/include/libarch/types.h
rd6c98451 rfbf4dc1 37 37 38 38 #include <libarch/common.h> 39 #include <libarch/stddef.h> 39 40 #include <libarch/stdint.h> 40 41 -
uspace/lib/c/arch/sparc32/include/libarch/stdint.h
rd6c98451 rfbf4dc1 41 41 #define SIZE_MAX UINT32_MAX 42 42 43 typedef uint32_t size_t;44 45 43 #define UINTPTR_MAX UINT32_MAX 46 44 typedef uint32_t uintptr_t; -
uspace/lib/c/arch/sparc32/include/libarch/types.h
rd6c98451 rfbf4dc1 37 37 38 38 #include <libarch/common.h> 39 #include <libarch/stddef.h> 39 40 #include <libarch/stdint.h> 40 41 -
uspace/lib/c/arch/sparc64/include/libarch/stdint.h
rd6c98451 rfbf4dc1 41 41 #define SIZE_MAX UINT64_MAX 42 42 43 typedef uint64_t size_t;44 45 43 #define UINTPTR_MAX UINT64_MAX 46 44 typedef uint64_t uintptr_t; -
uspace/lib/c/arch/sparc64/include/libarch/types.h
rd6c98451 rfbf4dc1 37 37 38 38 #include <libarch/common.h> 39 #include <libarch/stddef.h> 39 40 #include <libarch/stdint.h> 40 41 -
uspace/lib/posix/include/posix/stddef.h
rd6c98451 rfbf4dc1 48 48 #define offsetof(type,member) ((size_t) &(((type *) 0)->member)) 49 49 50 typedef ssize_t __POSIX_DEF__(ptrdiff_t);51 52 53 50 #endif /* POSIX_STDDEF_H_ */ 54 51 -
uspace/lib/posix/source/stdio/scanf.c
rd6c98451 rfbf4dc1 748 748 break; 749 749 case LMOD_t: ; 750 p osix_ptrdiff_t *pt = va_arg(arg, posix_ptrdiff_t *);751 *pt = (p osix_ptrdiff_t) sres;750 ptrdiff_t *pt = va_arg(arg, ptrdiff_t *); 751 *pt = (ptrdiff_t) sres; 752 752 break; 753 753 default:
Note:
See TracChangeset
for help on using the changeset viewer.