1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-12-28 00:00:18 +05:30

floatscan-experiment.c: add function prototypes

This commit is contained in:
Intel A80486DX2-66 2024-03-02 15:25:41 +03:00
parent 223393b38c
commit ca099f2797
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -25,6 +25,11 @@
#define FLOAT_TYPE 0
#define DOUBLE_TYPE 1
#define LONG_DOUBLE_TYPE 2
static long long scanexp(FILE *f, int pok);
static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int pok);
static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok);
long double __floatscan(FILE *f, int prec, int pok);
/* wrapping code --- end */
/* the original musl libc code --- beginning */