diff options
| author | John Ogness <john.ogness@linutronix.de> | 2017-12-19 11:16:28 +0100 |
|---|---|---|
| committer | John Ogness <john.ogness@linutronix.de> | 2017-12-19 11:16:28 +0100 |
| commit | 6e7e1b7172813fc4ecb60597f903dd21a4616159 (patch) | |
| tree | dbfe0b8f1a3d51c275722ba86d4ffe109ee88aef /distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello.c | |
| parent | 270520b4a2eac8725c8575c3180964289722e191 (diff) | |
update yocto-advanced: sync to devel/manut/yocto
The devel/manut/yocto heavily diverted from master. Sync
with latest version 8cd4956a9b48a316eab6dc6d1b1f6cd51362fecf.
Signed-off-by: John Ogness <john.ogness@linutronix.de>
Diffstat (limited to 'distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello.c')
| -rw-r--r-- | distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello.c b/distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello.c new file mode 100644 index 0000000..aea8503 --- /dev/null +++ b/distribution/yocto-advanced/meta-schulung-extended/recipes-app/greeting/files/hello.c @@ -0,0 +1,12 @@ +#include <stdio.h> + +/* + * A simple application to greet the world. + */ + +int main(void) +{ + printf("Hello, world!\n"); + return 0; +} + |
