Add test cases for generator expressions and library relocation to the code_relocation test, in order to verify functionality for these new API features. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
14 lines
233 B
C
14 lines
233 B
C
/*
|
|
* Copyright 2022 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <zephyr/sys/printk.h>
|
|
|
|
void relocated_helper(void)
|
|
{
|
|
printk("Relocated helper function running on %s\n\n", CONFIG_BOARD);
|
|
}
|