summaryrefslogtreecommitdiffstats
path: root/osdep/strsep.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:07:42 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 19:07:42 +0000
commitb2c4df0543c3de1725763511eca658a055209f36 (patch)
tree618dd9e22574f0928d6c6bf09d28cf7096955e75 /osdep/strsep.c
parent4cb9cfc6eead9bb182159d20a425baaaf01d9927 (diff)
downloadmpv-b2c4df0543c3de1725763511eca658a055209f36.tar.bz2
mpv-b2c4df0543c3de1725763511eca658a055209f36.tar.xz
Move #ifdef directives around complete files into the build system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21873 b3059339-0415-0410-9bf9-f77b7e298cf2
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