dec21140A ethernet driver for virtualpc, contributed by nicolas tittley.
[minix.git] / man / man3 / ldexp.3
blobff1b627b2722423b61e539d69ed6d5a766db968e
1 .TH LDEXP 3 "January 7, 2010"
2 .UC 4
3 .SH NAME
4 ldexp, scalbn, scalbnf, scalbln, scalblnf \- compute absolute value
5 .SH SYNOPSIS
6 .nf
7 .ft B
8 #include <math.h>
10 double ldexp(double \fIx\fP, int \fIn\fP);
11 double scalbn(double \fIx\fP, int \fIn\fP);
12 float scalbnf(float \fIx\fP, int \fIn\fP);
13 double scalbln(double \fIx\fP, long \fIn\fP);
14 float scalblnf(float \fIx\fP, long \fIn\fP);
15 .fi
16 .SH DESCRIPTION
17 These functions all compute \fIx\fP * 2^\fIn\fP.
18 .SH "RETURN VALUE
19 These functions all return \fIx\fP * 2^\fIn\fP.