aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-test/hello-native/files/hello.c
blob: ed30d69d15f1abdf2d1519606cfc62c339ccdcac (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main(int argc, char** argv)
{
  printf("Hello world on host machine \n");

  return 0;

}