blob: df3ca1ea2fbfc91ce5f1661fa4699e163c6f350a [file]
/*
* hello.c - Simple hello world program
*/
#include <stdio.h>
int main(int argc, char *argv[])
{
printf(GREETING_MESSAGE);
return 0;
}