Add builtin_spawn stub for Windows

This commit is contained in:
Lassi Kortela 2019-08-21 22:18:20 +03:00
parent 1e306391a7
commit 682cbf2400
1 changed files with 7 additions and 0 deletions

View File

@ -137,3 +137,10 @@ void os_setenv(const char *name, const char *value)
} }
} }
} }
value_t builtin_spawn(value_t *args, uint32_t nargs)
{
(void)args;
(void)nargs;
return FL_F;
}