Forward decl timeval. Include sys/time.h in source
[yaz-moved-to-github.git] / include / yaz / mutex.h
index dab2f13..4f21521 100644 (file)
@@ -103,6 +103,8 @@ YAZ_EXPORT void yaz_cond_create(YAZ_COND *p);
 YAZ_EXPORT
 void yaz_cond_destroy(YAZ_COND *p);
 
+YAZ_EXPORT struct timeval;
+
 /** \brief waits for condition
     \param p condition variable handle
     \param m mutex
@@ -110,8 +112,6 @@ void yaz_cond_destroy(YAZ_COND *p);
 
     Semantics like pthread_cond_wait.
 */
-YAZ_EXPORT struct timeval;
-
 YAZ_EXPORT
 int yaz_cond_wait(YAZ_COND p, YAZ_MUTEX m, const struct timeval *abstime);