Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
c5585af4c48282ac17571932bbfb35042a1db45c
/
.
/
samples
/
hello_world
/
src
/
main.c
blob: c550ab461cb356c7785bace541ed3611e42f1c69 [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2012-2014 Wind River Systems, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include
<stdio.h>
int
main
(
void
)
{
printf
(
"Hello World! %s\n"
,
CONFIG_BOARD_TARGET
);
return
0
;
}