Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
32b475ebb97332f078348ff8548888b36fe3d813
/
.
/
samples
/
hello_world
/
src
/
main.c
blob: 04bd688f5f3712a3e8f885e7b688bd093bed410e [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2012-2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include
<zephyr.h>
#include
<misc/printk.h>
void
main
(
void
)
{
printk
(
"Hello World! %s\n"
,
CONFIG_ARCH
);
}