diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-05-06 23:55:40 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-05-06 23:55:40 +0200 |
commit | c6fc9fbb8e0d2e0a8147197c31589cdc96497e07 (patch) | |
tree | 51577b62dd3802753fa9cedcaca4f5c0c62da5f3 /pthread/pt-internal.h | |
parent | 0ef7b75c4ba91b6660f0d3d8b51d14d25e3d5bfb (diff) |
Revert "Stop using IS_IN"
This reverts commit 44ae774bed1a75ea926590f1bc7c9f3328219832.
Diffstat (limited to 'pthread/pt-internal.h')
-rw-r--r-- | pthread/pt-internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pthread/pt-internal.h b/pthread/pt-internal.h index 18b5b4c..f40dd4a 100644 --- a/pthread/pt-internal.h +++ b/pthread/pt-internal.h @@ -60,7 +60,7 @@ enum pthread_state # define PTHREAD_SYSDEP_MEMBERS #endif -#if !(IS_IN (libpthread)) +#ifndef 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 |