mirror of
https://github.com/drasko/codezero.git
synced 2026-01-14 11:53:15 +01:00
new file: conts/test/SConstruct new file: conts/test/container.c new file: conts/test/include/linker.lds new file: conts/test/include/test.h new file: conts/test/main.c new file: conts/test/src/test.c modified: scripts/bare/bare_generator.py
13 lines
165 B
C
13 lines
165 B
C
/*
|
|
* Main function for this container
|
|
*/
|
|
#include <l4lib/arch/syslib.h>
|
|
#include <l4lib/arch/syscalls.h>
|
|
#include <l4/api/space.h>
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|