summaryrefslogtreecommitdiffstats
path: root/osdep/strsep.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/strsep.c')
-rw-r--r--osdep/strsep.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/osdep/strsep.c b/osdep/strsep.c
index 51e16c3599..85bb8b5749 100644
--- a/osdep/strsep.c
+++ b/osdep/strsep.c
@@ -5,7 +5,6 @@
#include "config.h"
-#ifndef HAVE_STRSEP
char *strsep(char **stringp, const char *delim) {
char *begin, *end;
@@ -39,4 +38,3 @@ char *strsep(char **stringp, const char *delim) {
return begin;
}
-#endif