From 23f9ae74c645691a00004bc9d85741f3ca4bafa9 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Wed, 6 May 2015 23:56:14 +0200 Subject: Revert "Revert "Stop using IS_IN"" This reverts commit c6fc9fbb8e0d2e0a8147197c31589cdc96497e07. --- pthread/pt-initialize.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pthread/pt-initialize.c') diff --git a/pthread/pt-initialize.c b/pthread/pt-initialize.c index c6489f4..9e5404b 100644 --- a/pthread/pt-initialize.c +++ b/pthread/pt-initialize.c @@ -28,7 +28,7 @@ DEFINE_HOOK (__pthread_init, (void)); -#ifdef IS_IN_libpthread +#if IS_IN (libpthread) static const struct pthread_functions pthread_functions = { .ptr_pthread_attr_destroy = __pthread_attr_destroy, @@ -75,13 +75,13 @@ static const struct pthread_functions pthread_functions = .ptr__IO_funlockfile = _cthreads_funlockfile, .ptr__IO_ftrylockfile = _cthreads_ftrylockfile, }; -#endif /* IS_IN_libpthread */ +#endif /* IS_IN (libpthread) */ /* Initialize the pthreads library. */ void ___pthread_init (void) { -#ifdef IS_IN_libpthread +#if IS_IN (libpthread) __libc_pthread_init(&pthread_functions); #endif RUN_HOOK (__pthread_init, ()); -- cgit v1.2.3