diff options
author | Russ Cox <rsc@swtch.com> | 2020-01-19 21:25:33 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2020-01-19 21:26:23 -0500 |
commit | 8dcb18f71b1917713d4743ab10968c527acdc62e (patch) | |
tree | acc9640614ae66ae5568107710765fcc628afe1d /include | |
parent | d15607b9ddd9872b48fe3ac8c68f9637044be310 (diff) | |
download | plan9port-8dcb18f71b1917713d4743ab10968c527acdc62e.tar.gz plan9port-8dcb18f71b1917713d4743ab10968c527acdc62e.tar.bz2 plan9port-8dcb18f71b1917713d4743ab10968c527acdc62e.zip |
libthread: rm FreeBSD 4 code
Pretty sure FreeBSD 4 is gone now. :-)
Diffstat (limited to 'include')
-rw-r--r-- | include/u.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/u.h b/include/u.h index d0cd6396..8a715b1e 100644 --- a/include/u.h +++ b/include/u.h @@ -86,10 +86,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 |