Relax dependencies on errno and bingden Debian carries errno 0.2.4 for now, and bindgen 0.60.1. The package builds and works just fine with those versions, so let's relax the dependencies a bit.
[PATCH] tests: util: fix tests on 32-bit architectures The last `fallocate()` argument is an integer the size of the architecture bus width (32 or 64-bit). However, an `i64` is used by default here, causing the build to fail on 32-bit architectures. This patch fixes that by adding a type conversion in the function call.