source: trunk/make/testcase/helloworld.c@ 9270

Last change on this file since 9270 was 9270, checked in by bird, 23 years ago

Initial coding.

File size: 1.0 KB
Line 
1/* $Id: helloworld.c,v 1.1 2002-09-20 03:21:04 bird Exp $
2 *
3 * Simple Hello World Program.
4 *
5 * Copyright (c) 2002 knut st. osmundsen <bird@anduin.net>
6 *
7 *
8 * This file is part of Buildsystem.
9 *
10 * Buildsystem is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as published
12 * by the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * Buildsystem is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with Buildsystem; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 */
25
26#include <stdio.h>
27
28int main(void)
29{
30 fputs("Hello World", stdout);
31 return 0;
32}
33
Note: See TracBrowser for help on using the repository browser.