Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
mdmillerii
/
openbmc
/
bb3935f2b00a7a71ddd9932368aaeb38caf5647d
/
.
/
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
}