From fcc00236a16a2c32f1d0693dad580b6e6613dbf1 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 4 Jun 2024 14:36:02 -0400 Subject: add __fpclassify_error() --- src/math/__fpclassify_error.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/math/__fpclassify_error.c (limited to 'src/math/__fpclassify_error.c') diff --git a/src/math/__fpclassify_error.c b/src/math/__fpclassify_error.c new file mode 100644 index 00000000..8684e8ae --- /dev/null +++ b/src/math/__fpclassify_error.c @@ -0,0 +1,12 @@ +#include "_safety.h" + +int __fpclassify_error(void) +{ + UNDEFINED("Argument to fpclassify() macro was not a real floating type"); + return 0; +} + +/* +STDC(0) +SIGNAL_SAFE(0) +*/ -- cgit v1.2.1