diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-09-12 19:47:04 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-09-12 19:47:04 +0000 |
commit | 7d69051ed36ba0a26342ff530bb83aea2753de30 (patch) | |
tree | a26939a29b56a693fdb82d8fa52b8ccce5e01fe7 /lib/libm/arch/sh/e_sqrt.c | |
parent | 77512715c6981f13bcde679f50a2572527367212 (diff) |
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/arch/sh/e_sqrt.c')
-rw-r--r-- | lib/libm/arch/sh/e_sqrt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libm/arch/sh/e_sqrt.c b/lib/libm/arch/sh/e_sqrt.c index fdf1515bbe7..4dfba32ce3e 100644 --- a/lib/libm/arch/sh/e_sqrt.c +++ b/lib/libm/arch/sh/e_sqrt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_sqrt.c,v 1.6 2014/04/18 15:09:52 guenther Exp $ */ +/* $OpenBSD: e_sqrt.c,v 1.7 2016/09/12 19:47:02 guenther Exp $ */ /* * Written by Martynas Venckus. Public domain @@ -31,5 +31,5 @@ sqrt(double d) return (d); } - -__strong_alias(sqrtl,sqrt); +DEF_STD(sqrt); +LDBL_CLONE(sqrt); |