diff options
author | Marvin Borner | 2020-07-22 21:43:05 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-22 21:43:05 +0200 |
commit | 6f0f8d26d2710e24192e56e85ecb5fc2b7f54da7 (patch) | |
tree | 747eea900f121a50579f62ac230875f07d8f6149 /src/lib/inc/def.h | |
parent | e9c31cf19a30bd2d9960ce8341fea9cbfc973f7a (diff) |
Added interrupts
Diffstat (limited to 'src/lib/inc/def.h')
-rw-r--r-- | src/lib/inc/def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/inc/def.h b/src/lib/inc/def.h index 6e3066a..409c0b3 100644 --- a/src/lib/inc/def.h +++ b/src/lib/inc/def.h @@ -13,8 +13,8 @@ typedef unsigned char u8; typedef signed short s16; typedef unsigned short u16; -typedef signed int s32; -typedef unsigned int u32; +typedef signed long s32; +typedef unsigned long u32; typedef signed long long s64; typedef unsigned long long u64; |