Skip to content

Commit

Permalink
libc/include/complex.h: Add CMPLX, CMPLXF, and CMPLXL
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Sherrill committed Jul 3, 2024
1 parent a0637f8 commit a5ffae1
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions newlib/libc/include/complex.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@

__BEGIN_DECLS

/* Implementation from FreeBSD */
#if __ISO_C_VISIBLE >= 2011
#ifdef __clang__
#define CMPLX(x, y) ((double complex){ x, y })
#define CMPLXF(x, y) ((float complex){ x, y })
#define CMPLXL(x, y) ((long double complex){ x, y })
#elif __GNUC_PREREQ__(4, 7)
#define CMPLX(x, y) __builtin_complex((double)(x), (double)(y))
#define CMPLXF(x, y) __builtin_complex((float)(x), (float)(y))
#define CMPLXL(x, y) __builtin_complex((long double)(x), (long double)(y))
#endif
#endif /* __ISO_C_VISIBLE >= 2011 */

/* 7.3.5 Trigonometric functions */
/* 7.3.5.1 The cacos functions */
double complex cacos(double complex);
Expand Down

0 comments on commit a5ffae1

Please sign in to comment.