diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2024-03-23 14:53:15 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-03-23 13:03:22 +0100 |
commit | 0fce0a75e76fd9965dc5a868ac84e7e3adb86b71 (patch) | |
tree | 1989966bfde5b38fe574c68b82271e588ab2363c | |
parent | 14d294e2014b188cce8f5a79dd46cf62cd9a86aa (diff) | |
download | hurd-0fce0a75e76fd9965dc5a868ac84e7e3adb86b71.tar.gz hurd-0fce0a75e76fd9965dc5a868ac84e7e3adb86b71.tar.bz2 hurd-0fce0a75e76fd9965dc5a868ac84e7e3adb86b71.zip |
Make long & friends 64-bit on 64-bit platforms
Not only on x86_64.
Message-ID: <20240323115322.69075-3-bugaevc@gmail.com>
-rw-r--r-- | hurd/hurd_types.defs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurd_types.defs b/hurd/hurd_types.defs index 9f176fef..0086d139 100644 --- a/hurd/hurd_types.defs +++ b/hurd/hurd_types.defs @@ -425,7 +425,7 @@ type flock_t = struct { }; type unsigned_int = uint32_t; -#if defined(__x86_64__) +#if defined(__LP64__) type long = int64_t; type unsigned_long = uint64_t; |