aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/os_win32.c
diff options
context:
space:
mode:
authorJouni Malinen <jouni@qca.qualcomm.com>2014-10-06 16:27:44 +0300
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2015-10-20 23:06:04 +0200
commit6e1569d375bd756747587c8b2dbf64d3012814a5 (patch)
tree822c0efb778d7920cfae27aaa26226e18d42a5d1 /src/utils/os_win32.c
parent6757dd4d28da76ef28d48e840a4c9ad13b87230f (diff)
downloadexternal_wpa_supplicant_8_ti-6e1569d375bd756747587c8b2dbf64d3012814a5.zip
external_wpa_supplicant_8_ti-6e1569d375bd756747587c8b2dbf64d3012814a5.tar.gz
external_wpa_supplicant_8_ti-6e1569d375bd756747587c8b2dbf64d3012814a5.tar.bz2
Add os_exec() helper to run external programs
Change-Id: I579af1fa8c2f85622ffddb186ba799dcb9ac4b6f Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com> Tested-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
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;
+}