diff options
Diffstat (limited to 'pthread/pt-internal.h')
-rw-r--r-- | pthread/pt-internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pthread/pt-internal.h b/pthread/pt-internal.h index ec8daed..18b5b4c 100644 --- a/pthread/pt-internal.h +++ b/pthread/pt-internal.h @@ -35,7 +35,7 @@ #include <pt-sysdep.h> #include <pt-machdep.h> -#ifdef IS_IN_libpthread +#if IS_IN (libpthread) # include <ldsodefs.h> #endif @@ -60,7 +60,7 @@ enum pthread_state # define PTHREAD_SYSDEP_MEMBERS #endif -#ifndef IS_IN_libpthread +#if !(IS_IN (libpthread)) #ifdef ENABLE_TLS /* Type of the TCB. */ typedef struct @@ -70,7 +70,7 @@ typedef struct thread_t self; /* This thread's control port. */ } tcbhead_t; #endif /* ENABLE_TLS */ -#endif /* IS_IN_libpthread */ +#endif /* ! IS_IN (libpthread) */ /* This structure describes a POSIX thread. */ struct __pthread |