Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
6c63e9f5
Commit
6c63e9f5
authored
Oct 18, 2015
by
Grazvydas Ignotas
Committed by
Alexandre Julliard
Oct 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Expose some more implemented math functions.
Signed-off-by:
Grazvydas Ignotas
<
notasas@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cc902bce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
math.h
include/msvcrt/math.h
+19
-0
No files found.
include/msvcrt/math.h
View file @
6c63e9f5
...
...
@@ -76,6 +76,25 @@ double __cdecl _y0(double);
double
__cdecl
_y1
(
double
);
double
__cdecl
_yn
(
int
,
double
);
double
__cdecl
cbrt
(
double
);
double
__cdecl
exp2
(
double
);
double
__cdecl
log2
(
double
);
double
__cdecl
rint
(
double
);
double
__cdecl
round
(
double
);
double
__cdecl
trunc
(
double
);
float
__cdecl
cbrtf
(
float
);
float
__cdecl
exp2f
(
float
);
float
__cdecl
log2f
(
float
);
float
__cdecl
rintf
(
float
);
float
__cdecl
roundf
(
float
);
float
__cdecl
truncf
(
float
);
long
__cdecl
lrint
(
double
);
long
__cdecl
lrintf
(
float
);
long
__cdecl
lround
(
double
);
long
__cdecl
lroundf
(
float
);
#if defined(__x86_64__) || defined(__arm__)
float
__cdecl
sinf
(
float
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment