Added ldexpl to ldexp manpage since it is missing.

Also added ldexpf manpage link since it is missing.
This commit is contained in:
nros 2016-03-17 18:29:58 +00:00
parent 3ae9c71097
commit 71f379ad51
3 changed files with 16 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.2022 2016/03/17 00:00:44 nros Exp $
# $NetBSD: mi,v 1.2023 2016/03/17 18:29:58 nros Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
./etc/mtree/set.comp comp-sys-root
@ -7532,6 +7532,8 @@
./usr/share/man/cat3/ldap_value_free.0 comp-ldap-catman ldap,.cat
./usr/share/man/cat3/ldap_value_free_len.0 comp-ldap-catman ldap,.cat
./usr/share/man/cat3/ldexp.0 comp-c-catman .cat
./usr/share/man/cat3/ldexpf.0 comp-c-catman .cat
./usr/share/man/cat3/ldexpl.0 comp-c-catman .cat
./usr/share/man/cat3/ldiv.0 comp-c-catman .cat
./usr/share/man/cat3/leaveok.0 comp-c-catman .cat
./usr/share/man/cat3/lfind.0 comp-c-catman .cat
@ -14511,6 +14513,8 @@
./usr/share/man/html3/ldap_value_free.html comp-ldap-htmlman ldap,html
./usr/share/man/html3/ldap_value_free_len.html comp-ldap-htmlman ldap,html
./usr/share/man/html3/ldexp.html comp-c-htmlman html
./usr/share/man/html3/ldexpf.html comp-c-htmlman html
./usr/share/man/html3/ldexpl.html comp-c-htmlman html
./usr/share/man/html3/ldiv.html comp-c-htmlman html
./usr/share/man/html3/leaveok.html comp-c-htmlman html
./usr/share/man/html3/lfind.html comp-c-htmlman html
@ -21445,6 +21449,8 @@
./usr/share/man/man3/ldap_value_free.3 comp-ldap-man ldap,.man
./usr/share/man/man3/ldap_value_free_len.3 comp-ldap-man ldap,.man
./usr/share/man/man3/ldexp.3 comp-c-man .man
./usr/share/man/man3/ldexpf.3 comp-c-man .man
./usr/share/man/man3/ldexpl.3 comp-c-man .man
./usr/share/man/man3/ldiv.3 comp-c-man .man
./usr/share/man/man3/leaveok.3 comp-c-man .man
./usr/share/man/man3/lfind.3 comp-c-man .man

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.175 2016/03/17 00:00:44 nros Exp $
# $NetBSD: Makefile,v 1.176 2016/03/17 18:29:59 nros Exp $
#
# @(#)Makefile 5.1beta 93/09/24
#
@ -352,6 +352,8 @@ MLINKS+=ilogb.3 ilogbf.3 ilogb.3 ilogbl.3
MLINKS+=isinff.3 isnanf.3
MLINKS+=j0.3 j0f.3 j0.3 j1.3 j0.3 j1f.3 j0.3 jn.3 j0.3 jnf.3 \
j0.3 y0.3 j0.3 y0f.3 j0.3 y1.3 j0.3 y1f.3 j0.3 yn.3 j0.3 ynf.3
MLINKS+=ldexp.3 ldexpf.3 \
ldexp.3 ldexpl.3
MLINKS+=lgamma.3 lgammaf.3 lgamma.3 lgamma_r.3 lgamma.3 lgammaf_r.3 \
lgamma.3 gamma.3 lgamma.3 gammaf.3 lgamma.3 gamma_r.3 \
lgamma.3 gammaf_r.3 lgamma.3 tgamma.3 lgamma.3 tgammaf.3

View File

@ -1,4 +1,4 @@
.\" $NetBSD: ldexp.3,v 1.4 2011/09/18 05:33:13 jruoho Exp $
.\" $NetBSD: ldexp.3,v 1.5 2016/03/17 18:29:59 nros Exp $
.\"
.\" Copyright (c) 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -33,12 +33,13 @@
.\"
.\" @(#)ldexp.3 8.2 (Berkeley) 4/19/94
.\"
.Dd September 18, 2011
.Dd March 17, 2016
.Dt LDEXP 3
.Os
.Sh NAME
.Nm ldexp ,
.Nm ldexpf
.Nm ldexpf ,
.Nm ldexpl
.Nd multiply floating-point number by integral power of 2
.Sh LIBRARY
.Lb libm
@ -48,6 +49,8 @@
.Fn ldexp "double x" "int exp"
.Ft float
.Fn ldexpf "float x" "int exp"
.Ft long double
.Fn ldexpl "long double x" "int exp"
.Sh DESCRIPTION
The
.Fn ldexp