diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-03-22 16:08:19 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-03-22 16:08:19 -0400 |
| commit | 02767690e0084ccbad2268c4f4abb0b2d2e8c30a (patch) | |
| tree | 19221aba21333173dc09c6df37a4b739af9fa969 /src/parse_f128.c | |
| parent | 71c78cc9cfbcefa165882326a9b90efacf107216 (diff) | |
| download | zig-02767690e0084ccbad2268c4f4abb0b2d2e8c30a.tar.gz zig-02767690e0084ccbad2268c4f4abb0b2d2e8c30a.zip | |
get rid of restrict; it's not supported by MSVC
Diffstat (limited to 'src/parse_f128.c')
| -rw-r--r-- | src/parse_f128.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse_f128.c b/src/parse_f128.c index df6469f3bb..bba45e0026 100644 --- a/src/parse_f128.c +++ b/src/parse_f128.c @@ -1028,7 +1028,7 @@ float128_t __floatscan(struct MuslFILE *f, int prec, int pok) return decfloat(f, c, bits, emin, sign, pok); } -float128_t parse_f128(const char *restrict s, char **restrict p) { +float128_t parse_f128(const char *s, char **p) { struct MuslFILE f; sh_fromstring(&f, s); shlim(&f, 0); |
