source: trunk/kBuild/doc/example1/hellolib.c@ 3675

Last change on this file since 3675 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: 317 bytes
Line 
1/* $Id: hellolib.c 2343 2009-04-19 21:44:50Z bird $ */
2/** @file
3 * Example no. 1 - hellolib.c - Hello world program w/ lib.
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
14extern int print_hello_world(void);
15
16int main()
17{
18 return print_hello_world();
19}
20
Note: See TracBrowser for help on using the repository browser.