Fix prototype mismatch.

This commit is contained in:
Dag-Erling Smørgrav 2006-03-28 21:46:55 +00:00
parent 33f19bee6f
commit 552585665b

View File

@ -204,7 +204,8 @@ _sem_wait(sem_t *sem)
}
int
_sem_timedwait(sem_t * __restrict sem, struct timespec * __restrict abstime)
_sem_timedwait(sem_t * __restrict sem,
const struct timespec * __restrict abstime)
{
struct timespec ts, ts2;
struct pthread *curthread;