From b4cd7036bea6c6440fbbcdaebe53c864c87a5646 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 28 May 2024 14:56:06 -0400 Subject: integrate jkmalloc/prep for readonly --- src/tgmath/acos.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/tgmath/acos.h (limited to 'src/tgmath') diff --git a/src/tgmath/acos.h b/src/tgmath/acos.h new file mode 100644 index 00000000..c7697ea2 --- /dev/null +++ b/src/tgmath/acos.h @@ -0,0 +1,19 @@ +#define acos(__x) _Generic((__x), \ + long double complex: cacosl, \ + double complex: cacos, \ + float complex: cacosf, \ + long double: $sl, \ + double: acos, \ + unsigned long long: acos, \ + long long: acos, \ + unsigned long: acos, \ + long: acos, \ + unsigned int: acos, \ + int: acos, \ + unsigned short: acos, \ + short: acos, \ + unsigned char: acos, \ + signed char: acos, \ + char: acos, \ + float: acos \ + )(__x)\n -- cgit v1.2.1