Changeset 4196304 in mainline for uspace/lib/c/arch/ia64/include/types.h
- Timestamp:
- 2010-04-09T13:12:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ddfcfeb2
- Parents:
- a1caa3c2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/ia64/include/types.h
ra1caa3c2 r4196304 38 38 #define __64_BITS__ 39 39 40 typedef unsigned long sysarg_t; 40 #include <libarch/common.h> 41 41 42 typedef char int8_t; 43 typedef short int int16_t; 44 typedef int int32_t; 45 typedef long int int64_t; 46 47 typedef unsigned char uint8_t; 48 typedef unsigned short int uint16_t; 49 typedef unsigned int uint32_t; 50 typedef unsigned long int uint64_t; 51 52 typedef struct { 53 uint64_t lo; 54 uint64_t hi; 55 } uint128_t; 42 typedef uint64_t sysarg_t; 56 43 57 44 typedef int64_t ssize_t;
Note:
See TracChangeset
for help on using the changeset viewer.