ConfigureChecks.cmake: Fix off_t detection for -Werror

This commit is contained in:
Sebastian Pipping 2025-04-05 00:48:32 +02:00
parent 77b38b1d43
commit b60fdc3535

View file

@ -50,6 +50,7 @@ if(HAVE_SYS_TYPES_H)
#include <sys/types.h>
int main(void) {
const off_t offset = -123;
(void)offset;
return 0;
}"
HAVE_OFF_T)