Fix CONFIG_OS=none build
authorJouni Malinen <j@w1.fi>
Thu, 25 Dec 2014 09:31:27 +0000 (11:31 +0200)
committerJouni Malinen <j@w1.fi>
Thu, 25 Dec 2014 14:37:12 +0000 (16:37 +0200)
Signed-off-by: Jouni Malinen <j@w1.fi>
src/utils/os_none.c

index 2649111..83fe025 100644 (file)
@@ -234,3 +234,9 @@ int os_snprintf(char *str, size_t size, const char *format, ...)
        return 0;
 }
 #endif /* OS_NO_C_LIB_DEFINES */
+
+
+int os_exec(const char *program, const char *arg, int wait_completion)
+{
+       return -1;
+}