Bell 32V development
authorTom London <tbl@research.uucp>
Sat, 9 Dec 1978 03:48:49 +0000 (22:48 -0500)
committerTom London <tbl@research.uucp>
Sat, 9 Dec 1978 03:48:49 +0000 (22:48 -0500)
Work on file usr/man/man3/floor.3m

Co-Authored-By: John Reiser <jfr@research.uucp>
Synthesized-from: 32v

usr/man/man3/floor.3m [new file with mode: 0644]

diff --git a/usr/man/man3/floor.3m b/usr/man/man3/floor.3m
new file mode 100644 (file)
index 0000000..f47974b
--- /dev/null
@@ -0,0 +1,35 @@
+.TH FLOOR 3M 
+.SH NAME
+fabs, floor, ceil \- absolute value, floor, ceiling functions
+.SH SYNOPSIS
+.B #include <math.h>
+.PP
+.B double floor(x)
+.br
+.B double x;
+.PP
+.B double ceil(x)
+.br
+.B double x;
+.PP
+.B double fabs(x)
+.br
+.B double(x);
+.SH DESCRIPTION
+.I Fabs
+returns the absolute value
+.RI | \|x\| |.
+.PP
+.I Floor
+returns the
+largest integer
+not greater than
+.IR x .
+.PP
+.I Ceil
+returns the
+smallest integer
+not less than
+.IR x .
+.SH SEE ALSO
+abs(3)