Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
mdmillerii
/
openbmc
/
6292c13d8c0eefcda8bf494ad1e7a88a1c3a959a
/
.
/
poky
/
meta-skeleton
/
recipes-skeleton
/
hello-single
/
files
/
helloworld.c
blob: fc7169b7b831d254c58352399b5d2edf5cc62f23 [
file
] [
log
] [
blame
]
Patrick Williams
c124f4f
2015-09-15 14:41:29 -0500
[
diff
] [
blame
]
1
#include
<stdio.h>
2
3
int
main
(
void
)
4
{
5
printf
(
"Hello world!\n"
);
6
7
return
0
;
8
}