Skip to content

Commit

Permalink
Update types.h
Browse files Browse the repository at this point in the history
  • Loading branch information
YuzukiTsuru authored Feb 3, 2024
1 parent 516190f commit f6ed056
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions include/arch/arm32/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ typedef unsigned long long u64;
typedef float f32;
typedef double f64;

typedef signed char int8_t;
typedef unsigned char uint8_t;

typedef signed short int16_t;
typedef unsigned short uint16_t;

typedef signed int int32_t;
typedef unsigned int uint32_t;

typedef signed long long int64_t;
typedef unsigned long long uint64_t;

#ifdef CONFIG_ARM64
#define BITS_PER_LONG 64
#else /* CONFIG_ARM64 */
Expand Down

0 comments on commit f6ed056

Please sign in to comment.