aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-test/hello-native/files/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-test/hello-native/files/hello.c')
-rw-r--r--meta/recipes-test/hello-native/files/hello.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/recipes-test/hello-native/files/hello.c b/meta/recipes-test/hello-native/files/hello.c
new file mode 100644
index 00000000000..ed30d69d15f
--- /dev/null
+++ b/meta/recipes-test/hello-native/files/hello.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+int main(int argc, char** argv)
+{
+ printf("Hello world on host machine \n");
+
+ return 0;
+
+}