zephyr/tests/application_development/code_relocation/test_lib/test_lib2.c
Daniel DeGrasse bd593bf93e tests: code_relocation: Add additional test cases for library and genex
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>
2023-01-17 18:08:37 +01:00

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);
}