Files
ladybird/Userland/Libraries/LibC
Daniel Bertalan b23edd418c LibC: Fix inttypes.h macros for x86-64 and extend them
On x86-64, `int64_t` is defined to be `long` (not `long long`) , so for
printing, the "l" format specifier has to be used instead of i686's
"ll".

A couple of these macros weren't updated when the x86-64 target was
added, so using them produced warnings like this:

> warning: format specifies type 'long long' but the argument has type
> 'int64_t' (aka 'long') [-Wformat]
>
>       "DW_CFA_GNU_negative_offset_extended(%" PRId64 ")\n", offset);
>       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~

This commit changes the macros to be correct for both architectures, and
reorders them to be consistent and adds a couple missing ones for the
sake of completeness.
2022-03-28 22:24:05 +04:30
..
2021-12-24 05:26:21 -08:00
2022-03-28 10:38:02 -07:00
2022-03-02 11:40:37 +01:00
2021-12-18 21:01:10 -08:00
2021-12-28 11:00:51 +01:00
2022-01-07 15:44:42 +01:00
2022-01-07 18:38:32 +01:00
2021-12-24 05:26:21 -08:00
2022-03-04 20:07:05 +01:00
2022-01-07 15:44:42 +01:00
2022-03-28 10:38:02 -07:00
2022-02-12 12:16:59 +01:00
2022-03-02 18:08:05 +01:00