diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/u.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/include/u.h b/include/u.h index d0cd6396..3bea890e 100644 --- a/include/u.h +++ b/include/u.h @@ -66,10 +66,8 @@ typedef long p9jmp_buf[sizeof(sigjmp_buf)/sizeof(long)]; #if defined(__linux__) # include <sys/types.h> -# if defined(__Linux26__) -# include <pthread.h> -# define PLAN9PORT_USING_PTHREADS 1 -# endif +# include <pthread.h> +# define PLAN9PORT_USING_PTHREADS 1 # if defined(__USE_MISC) # undef _NEEDUSHORT # undef _NEEDUINT @@ -86,10 +84,8 @@ typedef long p9jmp_buf[sizeof(sigjmp_buf)/sizeof(long)]; #elif defined(__FreeBSD__) # include <sys/types.h> # include <osreldate.h> -# if __FreeBSD_version >= 500000 -# define PLAN9PORT_USING_PTHREADS 1 -# include <pthread.h> -# endif +# define PLAN9PORT_USING_PTHREADS 1 +# include <pthread.h> # if !defined(_POSIX_SOURCE) # undef _NEEDUSHORT # undef _NEEDUINT |