Provide strtok_r on Windows.

This commit is contained in:
samr7
2012-08-17 15:32:26 -07:00
parent 17f97ce112
commit 2f6353b0d4

View File

@@ -43,4 +43,9 @@ extern int count_processors(void);
#define PRSIZET "I"
static inline char *
strtok_r(char *strToken, const char *strDelimit, char **context) {
return strtok_s(strToken, strDelimit, context);
}
#endif /* !defined (__VG_WINGLUE_H__) */