/*============================================================================ ** ** ERG TRANSIT SYSTEMS Licensed software ** (C) 2007 All rights reserved ** **============================================================================ ** ** Project/Product : ** Filename : file.c ** Author(s) : DDP ** ** Description : Simple Hello World Program ** ** ** Information : ** Compiler : ANSI C ** Target : ** ** ** History : ** Date Author Description ** ------------------------------------------------------------------------- ** 05-Jan-07 DDP Created **==========================================================================*/ #include "stdio.h" int main() { printf ("Hello world\n" ); return 0; }