mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 18:33:16 +01:00
Now, bare containers get their files from conts/bare_src instead of conts/test. test directory will be used for the next generation test programs. Also bare_src is tracked by git now with a minor mod to .gitignore.
17 lines
225 B
C
17 lines
225 B
C
/*
|
|
* Main function for this container
|
|
*/
|
|
#include <l4lib/arch/syslib.h>
|
|
#include <l4lib/arch/syscalls.h>
|
|
#include <l4/api/space.h>
|
|
|
|
extern int print_hello_world(void);
|
|
|
|
int main(void)
|
|
{
|
|
print_hello_world();
|
|
|
|
return 0;
|
|
}
|
|
|