Added prototyping stuff
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user