mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	Hide internal __setfpucw function to allow direct access within libc.so and libc.a without using GOT nor PLT. [BZ #18822] * include/fpu_control.h (__setfpucw): Add attribute_hidden.
		
			
				
	
	
		
			11 lines
		
	
	
		
			258 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			258 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _FPU_CONTROL_H
 | 
						|
#include_next <fpu_control.h>
 | 
						|
 | 
						|
# ifndef _ISOMAC
 | 
						|
 | 
						|
/* Called at startup.  It can be used to manipulate fpu control register.  */
 | 
						|
extern void __setfpucw (fpu_control_t) attribute_hidden;
 | 
						|
 | 
						|
# endif /* !_ISOMAC */
 | 
						|
#endif /* fpu_control.h */
 |