diff options
Diffstat (limited to 'gcc/gthr.h')
-rw-r--r-- | gcc/gthr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/gthr.h b/gcc/gthr.h index 42f4d1a4d3a..dc43b6d50e3 100644 --- a/gcc/gthr.h +++ b/gcc/gthr.h @@ -89,7 +89,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA */ /* Check first for thread specific defines. */ -#if _PTHREADS +#if defined (__tpf__) +#include "gthr-tpf.h" +#elif _PTHREADS #include "gthr-posix.h" #elif _DCE_THREADS #include "gthr-dce.h" |