Files
zig/lib/libc/include/generic-freebsd/sys/_maxphys.h
T
2025-12-07 09:32:28 +01:00

10 lines
159 B
C
Vendored

/*-
* This file is in the public domain.
*/
#ifndef MAXPHYS
#ifdef __ILP32__
#define MAXPHYS (128 * 1024)
#else
#define MAXPHYS (1024 * 1024)
#endif
#endif