lwt icon indicating copy to clipboard operation
lwt copied to clipboard

Modern C and compatibility fixes

Open MisterDA opened this issue 1 year ago • 0 comments

This PR:

  • Fixes modern C89/C99/C11/C17 compilers requiring (void) (no parameter) instead of () (pre C89 any parameter);
  • Fixes mincore detection on BSD and macOS;
  • Fixes a compatibility issue with caml_convert_flag_list taking an int * in OCaml 4 and a const int * in OCaml 5, with a minor header reordering;
  • Fixes a sign comparison warning.

MisterDA avatar Jun 20 '24 08:06 MisterDA