l4re-base-25.08.0

This commit is contained in:
2025-09-12 15:55:45 +02:00
commit d959eaab98
37938 changed files with 9382688 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/*
* \brief A 'hello' program linked against shared libraries.
* \author Adam Lackorzynski <adam@os.inf.tu-dresden.de>
*
* This program is built with shared libraries.
*/
/*
* (c) 2009 Author(s)
* 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)
{
while (1)
{
puts("Hi World! (shared)");
sleep(1);
}
return 0;
}