Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7365accc
Commit
7365accc
authored
Apr 20, 2011
by
Jesus Cea
Browse files
Options
Browse Files
Download
Plain Diff
merge heads
parents
fc330aeb
2fc8b874
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
8 deletions
+4
-8
Include/pyport.h
Include/pyport.h
+4
-0
Objects/complexobject.c
Objects/complexobject.c
+0
-4
Objects/floatobject.c
Objects/floatobject.c
+0
-4
No files found.
Include/pyport.h
View file @
7365accc
...
...
@@ -279,6 +279,10 @@ typedef Py_intptr_t Py_ssize_t;
#include <stdlib.h>
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
/* needed for 'finite' declaration on some platforms */
#endif
#include <math.h>
/* Moved here from the math section, before extern "C" */
/********************************************
...
...
Objects/complexobject.c
View file @
7365accc
...
...
@@ -8,10 +8,6 @@
#include "Python.h"
#include "structmember.h"
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
#ifndef WITHOUT_COMPLEX
/* elementary operations on complex numbers */
...
...
Objects/floatobject.c
View file @
7365accc
...
...
@@ -15,10 +15,6 @@
#define MAX(x, y) ((x) < (y) ? (y) : (x))
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
#ifdef _OSF_SOURCE
/* OSF1 5.1 doesn't make this available with XOPEN_SOURCE_EXTENDED defined */
...
...
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