Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
6213f0fa
Commit
6213f0fa
authored
Sep 25, 2013
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some math.h fixes, c99 isX macros.
parent
3f035773
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
Cython/Includes/libc/math.pxd
Cython/Includes/libc/math.pxd
+8
-3
No files found.
Cython/Includes/libc/math.pxd
View file @
6213f0fa
...
...
@@ -84,8 +84,8 @@ cdef extern from "math.h" nogil:
float
erff
(
float
)
long
double
erfl
(
long
double
)
double
erfc
(
double
)
double
erfcf
(
double
)
long
double
erfcl
(
double
)
float
erfcf
(
float
)
long
double
erfcl
(
long
double
)
double
fdim
(
double
x
,
double
y
)
double
fma
(
double
x
,
double
y
)
...
...
@@ -94,4 +94,9 @@ cdef extern from "math.h" nogil:
double
scalbln
(
double
x
,
long
n
)
double
scalbn
(
double
x
,
int
n
)
double
nan
(
char
*
)
# const char*
double
nan
(
const
char
*
)
bint
isfinite
(
long
double
)
bint
isnormal
(
long
double
)
bint
isnan
(
long
double
)
bint
isinf
(
long
double
)
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