blob: a5fa648cbd1dce5531908a3b339d79187e22acd3 [file] [log] [blame] [edit]
/*
* Copyright (c) 2024 Linaro LTD
* SPDX-License-Identifier: Apache-2.0
*/
/* This main is brought into the Rust application. */
#include <zephyr/kernel.h>
#ifdef CONFIG_RUST
extern void rust_main(void);
int main(void)
{
rust_main();
return 0;
}
#endif