diff options
Diffstat (limited to 'libhb/ports.c')
-rw-r--r-- | libhb/ports.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/libhb/ports.c b/libhb/ports.c index 4e542b202..048f478cf 100644 --- a/libhb/ports.c +++ b/libhb/ports.c @@ -1147,33 +1147,6 @@ void hb_net_close( hb_net_t ** _n ) *_n = NULL; } -#ifdef SYS_MINGW -char *strtok_r(char *s, const char *delim, char **save_ptr) -{ - char *token; - - if (s == NULL) s = *save_ptr; - - /* Scan leading delimiters. */ - s += strspn(s, delim); - if (*s == '\0') return NULL; - - /* Find the end of the token. */ - token = s; - s = strpbrk(token, delim); - if (s == NULL) - /* This token finishes the string. */ - *save_ptr = strchr(token, '\0'); - else { - /* Terminate the token and make *SAVE_PTR point past it. */ - *s = '\0'; - *save_ptr = s + 1; - } - - return token; -} -#endif - /************************************************************************ * OS Sleep Allow / Prevent ***********************************************************************/ |