Commit 54684436 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

timespec is in time.h, not sys/time.h

parent e69745af
......@@ -34,10 +34,6 @@
#include <stdio.h>
#if defined(DEBUG) && defined(HAVE_SYS_TIME_H)
# include <sys/time.h>
#endif
#if defined( UNDER_CE )
/* WinCE API */
#elif defined( WIN32 )
......@@ -56,6 +52,10 @@
# include <pthread.h>
/* Needed for pthread_cond_timedwait */
# include <errno.h>
# ifdef DEBUG
# include <time.h>
# endif
/* This is not prototyped under Linux, though it exists. */
int pthread_mutexattr_setkind_np( pthread_mutexattr_t *attr, int kind );
......
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