Don't redundantly redeclare

It makes gcc throw an error:

redundant redeclaration of 'g_static_mutex_get_mutex_impl' [-Werror=redundant-decls]
This commit is contained in:
Matthias Clasen 2011-10-07 00:42:52 -04:00
parent e76927006a
commit c51fa1852d

View File

@ -96,9 +96,6 @@ GLIB_VAR gboolean g_thread_use_default_impl;
GLIB_VAR guint64 (*g_thread_gettime) (void);
/* internal function for fallback static mutex implementation */
GMutex* g_static_mutex_get_mutex_impl (GMutex **mutex);
GThread* g_thread_create (GThreadFunc func,
gpointer data,
gboolean joinable,