Changeset 32 for trunk/hal/x86_64/hal_types.h
- Timestamp:
- Jun 21, 2017, 11:34:09 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/hal_types.h
r29 r32 35 35 #define __in_kdata __attribute__((section(".kdata"))) 36 36 37 38 37 /************************************************************************** 39 38 * Exact-width integer types. 40 39 **************************************************************************/ 41 40 42 typedef signed char int8_t;43 typedef unsigned char uint8_t;41 typedef signed char int8_t; 42 typedef unsigned char uint8_t; 44 43 45 44 typedef signed short int16_t; 46 45 typedef unsigned short uint16_t; 47 46 48 typedef signed long intint32_t;49 typedef unsigned long intuint32_t;47 typedef int int32_t; 48 typedef unsigned int uint32_t; 50 49 51 50 typedef signed long long int int64_t; … … 53 52 54 53 typedef uint64_t size_t; 54 55 typedef uint64_t vaddr_t; // XXX 55 56 56 57 /***************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.