14 lines
105 B
C
14 lines
105 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#include <oslib/os.h>
|
||
|
|
||
|
bool osInit(void)
|
||
|
{
|
||
|
return(TRUE);
|
||
|
}
|
||
|
|
||
|
void osEnd(void)
|
||
|
{
|
||
|
}
|
||
|
|