On 5/17/24 3:49 PM, Paul Eggert wrote: > POSIX does not require uint64_t, and the C standard > does not require uint16_t or uint32_t either, so port > to platforms that lack these types. The POSIX limitation > is the only significant one in practice. I ran into this > issue when updating Emacs, which still ports to platforms > lacking 64-bit types.
Oops, sorry about that. I know Emacs uses this module but I didn't realize it supported platforms without 64-bit types. > Also, redo to avoid unnecssary parentheses, as these are now > functions not macros. Thanks. I started removing parentheses but it messed with Emacs indentation. I guess c-mode probably only cares about the outer parentheses now that I think about it. Collin