diff options
author | 2015-09-14 13:04:42 +0000 | |
---|---|---|
committer | 2015-09-14 13:04:42 +0000 | |
commit | 2e4927cf6badd618968f776e06a3b7ea48c9312b (patch) | |
tree | b177e9f7270d72e76f4d94aa1f17d7de3f5618b8 /lib/libc/arch/vax | |
parent | The .Dv macro actually forces normal font. (diff) | |
download | wireguard-openbsd-2e4927cf6badd618968f776e06a3b7ea48c9312b.tar.xz wireguard-openbsd-2e4927cf6badd618968f776e06a3b7ea48c9312b.zip |
vax deserves gdtoa love too!
Diffstat (limited to 'lib/libc/arch/vax')
-rw-r--r-- | lib/libc/arch/vax/gdtoa/hdtoa.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/arch/vax/gdtoa/hdtoa.c b/lib/libc/arch/vax/gdtoa/hdtoa.c index a844e251767..2e55d8a800e 100644 --- a/lib/libc/arch/vax/gdtoa/hdtoa.c +++ b/lib/libc/arch/vax/gdtoa/hdtoa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hdtoa.c,v 1.2 2011/06/08 22:14:17 martynas Exp $ */ +/* $OpenBSD: hdtoa.c,v 1.3 2015/09/14 13:04:42 guenther Exp $ */ /*- * Copyright (c) 2004, 2005 David Schultz <das@FreeBSD.ORG> * All rights reserved. @@ -199,6 +199,7 @@ __hdtoa(double d, const char *xdigs, int ndigits, int *decpt, int *sign, return (s0); } +DEF_STRONG(__hdtoa); /* * This is the long double version of __hdtoa(). @@ -209,3 +210,4 @@ __hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign, { return (__hdtoa((double)e, xdigs, ndigits, decpt, sign, rve)); } +DEF_STRONG(__hldtoa); |