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_sqrtl.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_sqrtl.c')
-rw-r--r-- | lib/libm/src/e_sqrtl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libm/src/e_sqrtl.c b/lib/libm/src/e_sqrtl.c index 9bbeec88db0..2e4db8f748a 100644 --- a/lib/libm/src/e_sqrtl.c +++ b/lib/libm/src/e_sqrtl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_sqrtl.c,v 1.2 2016/09/12 04:28:41 guenther Exp $ */ +/* $OpenBSD: e_sqrtl.c,v 1.3 2016/09/12 19:47:02 guenther Exp $ */ /*- * Copyright (c) 2007 Steven G. Kargl * All rights reserved. @@ -229,3 +229,4 @@ sqrtl(long double x) u.bits.ext_exp--; return (u.e); } +DEF_STD(sqrtl); |