diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-06-04 14:36:02 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-06-04 14:36:02 -0400 |
| commit | fcc00236a16a2c32f1d0693dad580b6e6613dbf1 (patch) | |
| tree | ca13070113c244d12648903236af02c87f123023 /src/math | |
| parent | e987f327d6c7991d14fb7661d4efe320c8ec7161 (diff) | |
add __fpclassify_error()
Diffstat (limited to 'src/math')
| -rw-r--r-- | src/math/__fpclassify_error.c | 12 |
1 files changed, 12 insertions, 0 deletions
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) +*/ |
