L4Re - L4 Runtime Environment
hello/server/src/main.c
This is the famous "Hello World!" program.
/*
* (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
* Frank Mehnert <fm3@os.inf.tu-dresden.de>,
* Lukas Grützmacher <lg2@os.inf.tu-dresden.de>
* economic rights: Technische Universität Dresden (Germany)
*
* This file is part of TUD:OS and distributed under the terms of the
* GNU General Public License 2.
* Please see the COPYING-GPL-2 file for details.
*/
#include <stdio.h>
#include <unistd.h>
int
main(
void
)
{
for
(;;)
{
puts(
"Hello World!"
);
sleep(1);
}
}
Generated on Sun Nov 25 2018 13:34:50 for L4Re - L4 Runtime Environment by
1.8.13