mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-28 11:27:09 +03:00
10 lines
159 B
C
Vendored
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 |