aboutsummaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/mingw.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/win32/mingw.c b/win32/mingw.c
index df413d18e..ae166000e 100644
--- a/win32/mingw.c
+++ b/win32/mingw.c
@@ -641,24 +641,6 @@ int link(const char *oldpath, const char *newpath)
641 return 0; 641 return 0;
642} 642}
643 643
644char *strsep(char **stringp, const char *delim)
645{
646 char *s, *old_stringp;
647 if (!*stringp)
648 return NULL;
649 old_stringp = s = *stringp;
650 while (*s) {
651 if (strchr(delim, *s)) {
652 *s = '\0';
653 *stringp = s+1;
654 return old_stringp;
655 }
656 s++;
657 }
658 *stringp = NULL;
659 return old_stringp;
660}
661
662char *realpath(const char *path, char *resolved_path) 644char *realpath(const char *path, char *resolved_path)
663{ 645{
664 /* FIXME: need normalization */ 646 /* FIXME: need normalization */