* pthread.h should include sched.h (bug #3516)

* semaphore.h should include fcntl.h


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29438 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2009-03-08 13:56:15 +00:00
parent 6b14439ceb
commit 2c9d779293
2 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#define _PTHREAD_H_
#include <sched.h>
#include <stdint.h>
#include <time.h>

View File

@ -5,6 +5,7 @@
#ifndef _SEMAPHORE_H_
#define _SEMAPHORE_H_
#include <fcntl.h>
#include <stdint.h>
#include <sys/cdefs.h>
#include <time.h>