From 682cbf2400ccb733ca75e268d4f25490b2fd2533 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Wed, 21 Aug 2019 22:18:20 +0300 Subject: [PATCH] Add builtin_spawn stub for Windows --- c/os_windows.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/c/os_windows.c b/c/os_windows.c index 3c87180..8d61346 100644 --- a/c/os_windows.c +++ b/c/os_windows.c @@ -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; +}