summaryrefslogtreecommitdiff
path: root/doc/examples/directives/files/src/hello.c
blob: df3ca1ea2fbfc91ce5f1661fa4699e163c6f350a (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * hello.c - Simple hello world program
 */
#include <stdio.h>

int main(int argc, char *argv[])
{
  printf(GREETING_MESSAGE);
  return 0;
}