Browse Source

Provide strtok_r on Windows.

master
samr7 12 years ago
parent
commit
2f6353b0d4
  1. 5
      winglue.h

5
winglue.h

@ -43,4 +43,9 @@ extern int count_processors(void); @@ -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__) */

Loading…
Cancel
Save