mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	attribute_hidden here. * sysdeps/ieee754/ldbl-opt/nldbl-vsyslog.c (vsyslog): Restore attribute_hidden here. * sysdeps/ieee754/ldbl-opt/nldbl-asprintf.c (__asprintf): Likewise. * sysdeps/ieee754/ldbl-opt/nldbl-fprintf.c (fprintf): Likewise. * sysdeps/ieee754/ldbl-opt/nldbl-qecvt.c (qecvt): Likewise. * sysdeps/ieee754/ldbl-opt/nldbl-qfcvt.c (qfcvt): Likewise. * sysdeps/ieee754/ldbl-opt/nldbl-qgcvt.c (qgcvt): Likewise. * sysdeps/ieee754/ldbl-opt/configure.in: Use AC_TRY_COMPILE and verify __LONG_DOUBLE_128__ predefine. * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
		
			
				
	
	
		
			18 lines
		
	
	
		
			316 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			316 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "nldbl-compat.h"
 | 
						|
 | 
						|
attribute_hidden
 | 
						|
int
 | 
						|
fprintf (FILE *stream, const char *fmt, ...)
 | 
						|
{
 | 
						|
  va_list arg;
 | 
						|
  int done;
 | 
						|
 | 
						|
  va_start (arg, fmt);
 | 
						|
  done = __nldbl_vfprintf (stream, fmt, arg);
 | 
						|
  va_end (arg);
 | 
						|
 | 
						|
  return done;
 | 
						|
}
 | 
						|
extern __typeof (fprintf) _IO_fprintf attribute_hidden;
 | 
						|
weak_alias (fprintf, _IO_fprintf)
 |