From: RĂ©mi Denis-Courmont Date: Wed, 3 Sep 2008 19:45:23 +0000 (+0300) Subject: strsep does not need to be exported for now X-Git-Tag: 1.0.0-pre1~3589 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=2ee13e893f47c7e4dc5575716fb6fd4e546b4513;p=vlc strsep does not need to be exported for now --- diff --git a/include/vlc_common.h b/include/vlc_common.h index 66550db4ff..65158d0412 100644 --- a/include/vlc_common.h +++ b/include/vlc_common.h @@ -755,7 +755,7 @@ VLC_EXPORT( size_t, vlc_strlcpy, ( char *, const char *, size_t ) ); VLC_EXPORT( long long, vlc_strtoll, ( const char *nptr, char **endptr, int base ) ); VLC_EXPORT( char *, vlc_strcasestr, ( const char *s1, const char *s2 ) ); -VLC_EXPORT( char *, vlc_strsep, ( char **, const char * ) ); +char *vlc_strsep( char **, const char * ); #if defined(WIN32) || defined(UNDER_CE) /* win32, cl and icl support */