Changeset fbf4dc1 in mainline for uspace/lib/c
- Timestamp:
- 2015-09-20T19:12:13Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bea710f
- Parents:
- d6c98451
- Location:
- uspace/lib/c/arch
- Files:
-
- 10 added
- 18 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
Note:
See TracChangeset
for help on using the changeset viewer.