mirror of
https://github.com/opnsense/src.git
synced 2026-05-25 18:54:02 -04:00
This caused LDBL_MANT_DIG to not be defined and therefore the scalbnl alias was not being emitted for double==long double platforms. Fixes:760b2ffc("Update scalbn* functions to the musl versions") Reported by: Jenkins (cherry picked from commitf5542795b9)
10 lines
237 B
C
10 lines
237 B
C
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
/*
|
|
* ldexp() and scalbn() are defined to be identical, but ldexp() lives in libc
|
|
* for backwards compatibility.
|
|
*/
|
|
#define scalbn ldexp
|
|
#include "../../msun/src/s_scalbn.c"
|
|
#undef scalbn
|