linux: sysconf: Use a more explicit maximum_ARG_MAX

This commit is contained in:
Adhemerval Zanella 2021-04-13 17:45:14 -03:00
parent a9880586ee
commit bdc12a77b7

View File

@ -35,7 +35,7 @@
/* Newer kernels (4.13) limit the maximum command line arguments lengths to
6MiB. */
#define maximum_ARG_MAX 6291456
#define maximum_ARG_MAX (6 * 1024 * 1024)
static long int posix_sysconf (int name);