Skip to content
Snippets Groups Projects
Verified Commit 8e903d88 authored by rahix's avatar rahix
Browse files

fix(pycardium): Remove unnecessary libc stubs


Signed-off-by: default avatarRahix <rahix@rahix.de>
parent 92b9c4be
No related branches found
No related tags found
1 merge request!8Fix build system again ...
Pipeline #533 passed
......@@ -65,22 +65,3 @@ mp_obj_t mp_builtin_open(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs)
return mp_const_none;
}
MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_open_obj, 1, mp_builtin_open);
/******************************************************************************
* TODO: Remove
*/
int _getpid(void)
{
return -1;
}
int _kill(int pid, int f)
{
return -1;
}
void _exit(int r)
{
;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment