diff options
author | 2016-09-12 19:47:01 +0000 | |
---|---|---|
committer | 2016-09-12 19:47:01 +0000 | |
commit | 2f2c00629eff6a304ebffb255fc56f4fa7a1833b (patch) | |
tree | b9c0095adcecbb9788e0b6034e82ec405e3f1288 /lib/libm/src/e_scalb.c | |
parent | More #include cleanup per POSIX: (diff) | |
download | wireguard-openbsd-2f2c00629eff6a304ebffb255fc56f4fa7a1833b.tar.xz wireguard-openbsd-2f2c00629eff6a304ebffb255fc56f4fa7a1833b.zip |
Reduce libm's exports and make internal calls go direct.
All dependencies on libc are now via reserved/standardized names.
ok kettenis@ millert@ deraadt@
Diffstat (limited to 'lib/libm/src/e_scalb.c')
-rw-r--r-- | lib/libm/src/e_scalb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libm/src/e_scalb.c b/lib/libm/src/e_scalb.c index 5762ea98098..52a4fbcf5cd 100644 --- a/lib/libm/src/e_scalb.c +++ b/lib/libm/src/e_scalb.c @@ -25,6 +25,7 @@ scalb(double x, int fn) { return scalbn(x, fn); } +DEF_NONSTD(scalb); #else @@ -41,4 +42,5 @@ scalb(double x, double fn) if (-fn > 65000.0) return scalbn(x,-65000); return scalbn(x,(int)fn); } +DEF_NONSTD(scalb); #endif |