mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 18:33:16 +01:00
15 lines
198 B
C
15 lines
198 B
C
/*
|
|
* Main function for this container
|
|
*/
|
|
|
|
#include <l4lib/macros.h>
|
|
#include L4LIB_INC_ARCH(syslib.h)
|
|
#include L4LIB_INC_ARCH(syscalls.h)
|
|
#include <l4/api/space.h>
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|