Last change
on this file 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
|
Rev | Line | |
---|
[2343] | 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 |
|
---|
| 14 | extern int print_hello_world(void);
|
---|
| 15 |
|
---|
| 16 | int main()
|
---|
| 17 | {
|
---|
| 18 | return print_hello_world();
|
---|
| 19 | }
|
---|
| 20 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.