Files
jsix_import/src/libraries/libc/math/frexpl.cpp
Justin C. Miller 8c1bb593ce [libc] Add ciel, frexpr implementations
The clang __builtin_* functions cannot be relied upon, as they may just
emit a call to the stdlib version. So this commit adds an implementation
for ceil and frexpr, as well as their float versions.
2023-01-12 21:51:36 -08:00

5 lines
124 B
C++

#include <assert.h>
extern "C"
long double frexpl(long double f, int *exp) { assert(false && "NYI"); *exp = 0; return 0; }