Files
meta-security/recipes-example/example/example-0.1/helloworld.c
Andrei Dinu 60d90b2563 meta-security : initial commit
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
2013-06-17 17:24:38 +03:00

9 lines
101 B
C

#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello World!\n");
return 0;
}