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