master
h 18 lines 335 Bytes
Raw
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 /*
3 * Declaration of guest_base.
4 * Copyright (c) 2003 Fabrice Bellard
5 */
6
7 #ifndef USER_GUEST_BASE_H
8 #define USER_GUEST_BASE_H
9
10 #ifndef CONFIG_USER_ONLY
11 #error Cannot include this header from system emulation
12 #endif
13
14 extern uintptr_t guest_base;
15
16 extern bool have_guest_base;
17
18 #endif