mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
use a more usual definition of int64_t & uint64_t
This commit is contained in:
parent
f4bbedd3c8
commit
8af184c341
1 changed files with 2 additions and 2 deletions
|
@ -69,9 +69,9 @@ typedef long long off_t;
|
|||
#endif
|
||||
|
||||
/// Unsigned 64 bit integer
|
||||
typedef unsigned long long uint64_t;
|
||||
typedef unsigned long uint64_t;
|
||||
/// Signed 64 bit integer
|
||||
typedef long long int64_t;
|
||||
typedef long int64_t;
|
||||
/// Unsigned 32 bit integer
|
||||
typedef unsigned int uint32_t;
|
||||
/// Signed 32 bit integer
|
||||
|
|
Loading…
Add table
Reference in a new issue