complex.h (0c0288a2187070cd4fa48f821000d29a7be44f5a) | complex.h (6813d08ff55ae587abd7e2297e051d491c218de0) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2001-2011 The FreeBSD Project. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 95 unchanged lines hidden (view full) --- 104double complex clog(double complex); 105float complex clogf(float complex); 106long double complex 107 clogl(long double complex); 108double complex conj(double complex) __pure2; 109float complex conjf(float complex) __pure2; 110long double complex 111 conjl(long double complex) __pure2; | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2001-2011 The FreeBSD Project. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 95 unchanged lines hidden (view full) --- 104double complex clog(double complex); 105float complex clogf(float complex); 106long double complex 107 clogl(long double complex); 108double complex conj(double complex) __pure2; 109float complex conjf(float complex) __pure2; 110long double complex 111 conjl(long double complex) __pure2; |
112float complex cpowf(float complex, float complex); 113double complex cpow(double complex, double complex); 114long double complex 115 cpowl(long double complex, long double complex); |
|
112float complex cprojf(float complex) __pure2; 113double complex cproj(double complex) __pure2; 114long double complex 115 cprojl(long double complex) __pure2; 116double creal(double complex) __pure2; 117float crealf(float complex) __pure2; 118long double creall(long double complex) __pure2; 119double complex csin(double complex); --- 15 unchanged lines hidden --- | 116float complex cprojf(float complex) __pure2; 117double complex cproj(double complex) __pure2; 118long double complex 119 cprojl(long double complex) __pure2; 120double creal(double complex) __pure2; 121float crealf(float complex) __pure2; 122long double creall(long double complex) __pure2; 123double complex csin(double complex); --- 15 unchanged lines hidden --- |