source: trunk/kBuild/doc/example1/hello.c@ 2544

Last change on this file since 2544 was 2343, checked in by bird, 16 years ago

doc/example1: create a simple example config.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 302 bytes
Line 
1/* $Id: hello.c 2343 2009-04-19 21:44:50Z bird $ */
2/** @file
3 * Example no. 1 - hello.c - Hello world program.
4 */
5
6/*
7 * The author disclaims copyright to this example code and places
8 * it in the public domain.
9 *
10 * #include <full-legal-disclaimer.h>
11 *
12 */
13
14#include <stdio.h>
15
16int main()
17{
18 printf("Hello world!\n");
19 return 0;
20}
21
Note: See TracBrowser for help on using the repository browser.