1
0
Fork 0
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:
Stefan Lankes 2015-06-29 09:58:32 +02:00
parent f4bbedd3c8
commit 8af184c341

View file

@ -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