1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 #ifndef UV_H 3 #define UV_H 4 5 bool uv_os_is_guest(void); 6 bool uv_os_is_host(void); 7 bool uv_query_test_call(unsigned int nr); 8 int uv_setup(void); 9 10 #endif /* UV_H */ 11