From 7b2d9779818f4c0d4c31d3a0292bee1c4b633217 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Wed, 16 Jan 2013 19:04:27 +0100 Subject: util: Fix compilation of envlist.c for MinGW MinGW has no strtok_r, so we need a declaration in sysemu/os-win32.h. We must also fix the include statements in util/envlist.c to include that file. We currently don't need an implementation of strtok_r because the code is compiled but not linked for MinGW. Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- include/sysemu/os-win32.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/sysemu/os-win32.h') diff --git a/include/sysemu/os-win32.h b/include/sysemu/os-win32.h index d0e9234d24..bf9edeb9ab 100644 --- a/include/sysemu/os-win32.h +++ b/include/sysemu/os-win32.h @@ -73,6 +73,8 @@ struct tm *gmtime_r(const time_t *timep, struct tm *result); #undef localtime_r struct tm *localtime_r(const time_t *timep, struct tm *result); +char *strtok_r(char *str, const char *delim, char **saveptr); + static inline void os_setup_signal_handling(void) {} static inline void os_daemonize(void) {} static inline void os_setup_post(void) {} -- cgit v1.2.3