mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	This commit moves one step towards the deprecation of wrappers that use _LIB_VERSION / matherr / __kernel_standard functionality, by adding the suffix '_compat' to their filenames and adjusting Makefiles and #includes accordingly. New template wrappers that do not use such functionality will be added by future patches and will be first used by the float128 wrappers.
		
			
				
	
	
		
			9 lines
		
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* The inline __ieee754_sqrt is not correctly rounding; it's OK for
 | 
						|
   most internal uses in glibc, but not for sqrt itself.  */
 | 
						|
#define __ieee754_sqrt __avoid_ieee754_sqrt
 | 
						|
#include <math.h>
 | 
						|
#include <math_private.h>
 | 
						|
#undef __ieee754_sqrt
 | 
						|
extern double __ieee754_sqrt (double);
 | 
						|
#include <math/w_sqrt_compat.c>
 |