aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/os_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/os_win32.c')
-rw-r--r--src/utils/os_win32.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/os_win32.c b/src/utils/os_win32.c
index 163cebe..eedc941 100644
--- a/src/utils/os_win32.c
+++ b/src/utils/os_win32.c
@@ -233,3 +233,8 @@ size_t os_strlcpy(char *dest, const char *src, size_t siz)
return s - src - 1;
}
+
+int os_exec(const char *program, const char *arg, int wait_completion)
+{
+ return -1;
+}