summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/syslinux-4.03/com32/lib/strsep.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/syslinux-4.03/com32/lib/strsep.c')
-rw-r--r--contrib/syslinux/syslinux-4.03/com32/lib/strsep.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/contrib/syslinux/syslinux-4.03/com32/lib/strsep.c b/contrib/syslinux/syslinux-4.03/com32/lib/strsep.c
deleted file mode 100644
index 5c4f03f..0000000
--- a/contrib/syslinux/syslinux-4.03/com32/lib/strsep.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * strsep.c
- */
-
-#include <string.h>
-
-char *strsep(char **stringp, const char *delim)
-{
- char *s = *stringp;
- char *e;
-
- if (!s)
- return NULL;
-
- e = strpbrk(s, delim);
- if (e)
- *e++ = '\0';
-
- *stringp = e;
- return s;
-}