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/noieee_src/n_tan.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/noieee_src/n_tan.c')
-rw-r--r-- | lib/libm/noieee_src/n_tan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libm/noieee_src/n_tan.c b/lib/libm/noieee_src/n_tan.c index b36dd16d379..971ebe7a89f 100644 --- a/lib/libm/noieee_src/n_tan.c +++ b/lib/libm/noieee_src/n_tan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: n_tan.c,v 1.15 2016/09/12 04:39:47 guenther Exp $ */ +/* $OpenBSD: n_tan.c,v 1.16 2016/09/12 19:47:02 guenther Exp $ */ /* $NetBSD: n_tan.c,v 1.1 1995/10/10 23:37:07 ragge Exp $ */ /* * Copyright (c) 1987, 1993 @@ -70,5 +70,5 @@ tan(double x) else return c/(x+x*ss); /* ... cos/sin */ } - -__strong_alias(tanl, tan); +DEF_STD(tan); +LDBL_UNUSED_CLONE(tan); |