summaryrefslogtreecommitdiff
path: root/examples/hello_TARGETS/hello2/hello2.c
blob: 95331f9f04b225836080be64c2a733314013c745 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <stdlib.h>

int main (int argc, char **argv )
{
  puts ("Hello World 2!");
  exit (0);
}