Commit d18cfbfe authored by Sean McGovern's avatar Sean McGovern Committed by Rémi Denis-Courmont

core: do not export vlc_tdestroy()

It was mistakenly added in 315f8e47.
Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 3b93bdce
...@@ -829,8 +829,6 @@ static inline void *vlc_memalign(size_t align, size_t size) ...@@ -829,8 +829,6 @@ static inline void *vlc_memalign(size_t align, size_t size)
# define vlc_free(base) free(base) # define vlc_free(base) free(base)
#endif #endif
VLC_API void vlc_tdestroy( void *, void (*)(void *) );
/***************************************************************************** /*****************************************************************************
* I18n stuff * I18n stuff
*****************************************************************************/ *****************************************************************************/
......
...@@ -371,6 +371,7 @@ void twalk( const void *root, void(*action)(const void *nodep, VISIT which, int ...@@ -371,6 +371,7 @@ void twalk( const void *root, void(*action)(const void *nodep, VISIT which, int
void tdestroy( void *root, void (*free_node)(void *nodep) ); void tdestroy( void *root, void (*free_node)(void *nodep) );
#else // HAVE_SEARCH_H #else // HAVE_SEARCH_H
# ifndef HAVE_TDESTROY # ifndef HAVE_TDESTROY
void vlc_tdestroy( void *, void (*)(void *) );
# define tdestroy vlc_tdestroy # define tdestroy vlc_tdestroy
# endif # endif
#endif #endif
......
...@@ -619,7 +619,6 @@ vlc_sd_probe_Add ...@@ -619,7 +619,6 @@ vlc_sd_probe_Add
vlc_sdp_Start vlc_sdp_Start
vlc_sd_Start vlc_sd_Start
vlc_sd_Stop vlc_sd_Stop
vlc_tdestroy
vlc_testcancel vlc_testcancel
vlc_threadvar_create vlc_threadvar_create
vlc_threadvar_delete vlc_threadvar_delete
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment