As the current libc includes a libm implementation, with the new libc this is needed. Unneeded (for the moment) archs have been removed.
		
			
				
	
	
		
			18 lines
		
	
	
		
			292 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			292 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* $NetBSD: crealf.c,v 1.2 2010/09/15 16:11:29 christos Exp $ */
 | 
						|
 | 
						|
/*
 | 
						|
 * Written by Matthias Drochner <drochner@NetBSD.org>.
 | 
						|
 * Public domain.
 | 
						|
 */
 | 
						|
 | 
						|
#include <complex.h>
 | 
						|
#include "../src/math_private.h"
 | 
						|
 | 
						|
float
 | 
						|
crealf(float complex z)
 | 
						|
{
 | 
						|
	float_complex w = { .z = z };
 | 
						|
 | 
						|
	return (REAL_PART(w));
 | 
						|
}
 |