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 */ native_emb_addr_remap(void ** addr)13__weak bool native_emb_addr_remap(void **addr) 14 { 15 return false; 16 } 17