mirror of
				https://gitlab.com/sortix/sortix.git
				synced 2023-02-13 20:55:38 -05:00 
			
		
		
		
	This work is based in part on code from NetBSD libm, libc and kernel. The library is partly public domain and partly BSD-style licensed.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			293 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			293 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* $NetBSD: creal.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"
 | 
						|
 | 
						|
double
 | 
						|
creal(double complex z)
 | 
						|
{
 | 
						|
	double_complex w = { .z = z };
 | 
						|
 | 
						|
	return (REAL_PART(w));
 | 
						|
}
 |