aboutsummaryrefslogtreecommitdiff
path: root/math/readstat/files/patch-src_readstat__variable.c
Commit message (Collapse)AuthorAgeFilesLines
* math/readstat: Update to 1.1.9Jason E. Hale2024-02-121-7/+3
| | | | | MFH: 2024Q1 Security: 388eefc0-c93f-11ee-92ce-4ccc6adda413
* math/readstat: another attempt at getting clang16 on FreeBSD14 to compile thisAdriaan de Groot2023-04-201-3/+7
|
* math/readstat: fix build on 14-CURRENTAdriaan de Groot2023-02-191-0/+11
In 14-CURRENT, the system compiler is more strict; it looks like In file included from src/readstat_bits.c:9: src/readstat_bits.h:10:29: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] int machine_is_little_endian(); Apply the stricter flags in all builds, then fix the source so that the prototypes are explicitly (void) -- this is a subtlely of C semantics where (void) means "no arguments" and () means "arguments unspecified" that rarely matters. Except now.