xref: /dflybsd-src/contrib/openbsd_libm/src/s_conjl.c (revision 4382f29d99a100bd77a81697c2f699c11f6a472a)
1*05a0b428SJohn Marino /*	$OpenBSD: s_conjl.c,v 1.1 2011/07/08 19:25:31 martynas Exp $	*/
2*05a0b428SJohn Marino 
3*05a0b428SJohn Marino /*
4*05a0b428SJohn Marino  * Copyright (c) 2011 Martynas Venckus <martynas@openbsd.org>
5*05a0b428SJohn Marino  *
6*05a0b428SJohn Marino  * Permission to use, copy, modify, and distribute this software for any
7*05a0b428SJohn Marino  * purpose with or without fee is hereby granted, provided that the above
8*05a0b428SJohn Marino  * copyright notice and this permission notice appear in all copies.
9*05a0b428SJohn Marino  *
10*05a0b428SJohn Marino  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11*05a0b428SJohn Marino  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12*05a0b428SJohn Marino  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13*05a0b428SJohn Marino  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14*05a0b428SJohn Marino  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15*05a0b428SJohn Marino  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16*05a0b428SJohn Marino  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17*05a0b428SJohn Marino  */
18*05a0b428SJohn Marino 
19*05a0b428SJohn Marino #include <complex.h>
20*05a0b428SJohn Marino #include <math.h>
21*05a0b428SJohn Marino 
22*05a0b428SJohn Marino long double complex
conjl(long double complex z)23*05a0b428SJohn Marino conjl(long double complex z)
24*05a0b428SJohn Marino {
25*05a0b428SJohn Marino 	return ~z;
26*05a0b428SJohn Marino }
27