L4Re Operating System Framework
Interface and Usage Documentation
Loading...
Searching...
No Matches
hello/server/src/main.c

This is the famous "Hello World!" program.

This is the famous "Hello World!" program.

/* SPDX-License-Identifier: MIT */
#include <stdio.h>
#include <unistd.h>
int main(void)
{
for (;;)
{
puts("Hello World!");
sleep(1);
}
}