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

int main(int argc, char** argv)
{
  printf("Hello test \n");

  return 0;

}