master
h 12 lines 237 Bytes
Raw
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 #ifndef USER_MMAP_MIN_ADDR_H
4 #define USER_MMAP_MIN_ADDR_H
5
6 #ifndef CONFIG_USER_ONLY
7 #error Cannot include this header from system emulation
8 #endif
9
10 extern uintptr_t mmap_min_addr;
11
12 #endif