xref: /reactos/sdk/lib/crt/math/acosf.c (revision 50cf16b3)
1 
2 #include <math.h>
3 
4 _Check_return_
5 float
6 __cdecl
7 acosf(
8     _In_ float x)
9 {
10     return (float)acos((double)x);
11 }
12