Added prototyping stuff

This commit is contained in:
ceriel
1993-11-10 11:14:28 +00:00
parent 48a8bc1bd1
commit 4b6c6de71f
47 changed files with 529 additions and 143 deletions

View File

@@ -28,32 +28,32 @@ extern int flt_status;
#define FLT_STRLEN 32
.PP
.B flt_add(e1, e2, e3)
.B void flt_add(e1, e2, e3)
.B flt_arith *e1, *e2, *e3;
.PP
.B flt_mul(e1, e2, e3)
.B void flt_mul(e1, e2, e3)
.B flt_arith *e1, *e2, *e3;
.PP
.B flt_sub(e1, e2, e3)
.B void flt_sub(e1, e2, e3)
.B flt_arith *e1, *e2, *e3;
.PP
.B flt_div(e1, e2, e3)
.B void flt_div(e1, e2, e3)
.B flt_arith *e1, *e2, *e3;
.PP
.B flt_umin(e)
.B void flt_umin(e)
.B flt_arith *e;
.PP
.B flt_modf(e1, intpart, fractpart)
.B void flt_modf(e1, intpart, fractpart)
.B flt_arith *e1, *intpart, *fractpart;
.PP
.B int flt_cmp(e1, e2)
.B flt_arith *e1, *e2;
.PP
.B flt_str2flt(s, e)
.B void flt_str2flt(s, e)
.B char *s;
.B flt_arith *e;
.PP
.B flt_flt2str(e, buf, bufsize)
.B void flt_flt2str(e, buf, bufsize)
.B flt_arith *e;
.B char *buf;
.B int bufsize;
@@ -61,7 +61,7 @@ extern int flt_status;
.B int flt_status;
.PP
.B #include <em_arith.h>
.B flt_arith2flt(n, e, uns)
.B void flt_arith2flt(n, e, uns)
.B arith n;
.B flt_arith *e;
.B int uns;
@@ -70,7 +70,7 @@ extern int flt_status;
.B flt_arith *e;
.B int uns;
.PP
.B flt_b64_sft(m, n)
.B void flt_b64_sft(m, n)
.B struct flt_mantissa *m;
.B int n;
.SH DESCRIPTION