types: fix typo in u64 typedef

This would have been a fun one to debug if i
hadn't caught it right now
This commit is contained in:
anna 2021-10-21 23:09:35 +02:00
parent 45ab27e738
commit f59229ba39
Signed by: fef
GPG key ID: EC22E476DC2D3D84

View file

@ -28,7 +28,7 @@ typedef __int32_t i32;
typedef __uint32_t u32;
typedef __int64_t i64;
typedef __int64_t u64;
typedef __uint64_t u64;
typedef __ssize_t isize;
typedef __size_t usize;