Skip to content

Commit 9f22b12

Browse files
authored
Fix invalid _float type for _fdpoly syntax in "Floating-point primitives" topic
1 parent 99a4e27 commit 9f22b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/c-runtime-library/reference/floating-point-primitives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ These floating-point primitives normalize the fractional part of an underflowed
235235
```C
236236
double __cdecl _dpoly(double x, double const* table, int n);
237237
long double __cdecl _ldpoly(long double x, long double const* table, int n);
238-
float __cdecl _fdpoly(float x, _float const* table, int n);
238+
float __cdecl _fdpoly(float x, float const* table, int n);
239239
```
240240

241241
### Parameters

0 commit comments

Comments
 (0)