Branch data Line data Source code
1 : : /* 2 : : * Copyright (c) 2024 Nordic Semiconductor ASA 3 : : * 4 : : * SPDX-License-Identifier: Apache-2.0 5 : : */ 6 : : #include <stdbool.h> 7 : : #include <zephyr/toolchain.h> 8 : : 9 : : /** 10 : : * Dummy version which does nothing 11 : : * Boards which do not have a better implementation can use this 12 : : */ 13 : 0 : __weak bool native_emb_addr_remap(void **addr) 14 : : { 15 : 0 : return false; 16 : : }