From 9295bc48dd22a8358a595b9cebffdfc09d4166cd Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 23 Aug 2016 13:14:20 +0200 Subject: Missing NOT_IN_ -> IS_IN conversion * sysdeps/pthread/bits/libc-lockP.h: Use IS_IN (libc) instead of !defined NOT_IN_libc. --- sysdeps/pthread/bits/libc-lockP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/sysdeps/pthread/bits/libc-lockP.h b/sysdeps/pthread/bits/libc-lockP.h index 65878f2..6c5db09 100644 --- a/sysdeps/pthread/bits/libc-lockP.h +++ b/sysdeps/pthread/bits/libc-lockP.h @@ -37,7 +37,7 @@ #endif /* Call thread functions through the function pointer table. */ -#if defined SHARED && !defined NOT_IN_libc +#if defined SHARED && IS_IN (libc) # define PTFAVAIL(NAME) __libc_pthread_functions_init # define __libc_ptf_call(FUNC, ARGS, ELSE) \ (__libc_pthread_functions_init ? PTHFCT_CALL (ptr_##FUNC, ARGS) : ELSE) -- cgit v1.2.3