Add builtin_spawn stub for Windows
This commit is contained in:
parent
1e306391a7
commit
682cbf2400
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue