2018-12-09 13:44:32 +01:00
|
|
|
/*******************************************************************************/
|
|
|
|
/* COS2000 - Compatible Operating System - LGPL v3 - Hordé Nicolas */
|
|
|
|
/* */
|
|
|
|
|
|
|
|
#include "libc.h";
|
|
|
|
#include "types.h";
|
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
2018-12-12 17:57:23 +01:00
|
|
|
u32 result = libc_testapi();
|
|
|
|
libc_exit(result);
|
2018-12-09 13:44:32 +01:00
|
|
|
}
|