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
8e1da582
Commit
8e1da582
authored
Apr 25, 2016
by
Stefan Krah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #26846: Workaround for non-standard stdlib.h on Android.
parent
1845d144
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
6 deletions
+4
-6
Modules/_decimal/libmpdec/basearith.c
Modules/_decimal/libmpdec/basearith.c
+0
-1
Modules/_decimal/libmpdec/io.c
Modules/_decimal/libmpdec/io.c
+0
-1
Modules/_decimal/libmpdec/memory.c
Modules/_decimal/libmpdec/memory.c
+1
-1
Modules/_decimal/libmpdec/mpalloc.h
Modules/_decimal/libmpdec/mpalloc.h
+2
-2
Modules/_decimal/libmpdec/mpdecimal.c
Modules/_decimal/libmpdec/mpdecimal.c
+1
-1
No files found.
Modules/_decimal/libmpdec/basearith.c
View file @
8e1da582
...
...
@@ -32,7 +32,6 @@
#include <string.h>
#include <assert.h>
#include "constants.h"
#include "memory.h"
#include "typearith.h"
#include "basearith.h"
...
...
Modules/_decimal/libmpdec/io.c
View file @
8e1da582
...
...
@@ -37,7 +37,6 @@
#include <locale.h>
#include "bits.h"
#include "constants.h"
#include "memory.h"
#include "typearith.h"
#include "io.h"
...
...
Modules/_decimal/libmpdec/memory.c
View file @
8e1da582
...
...
@@ -30,7 +30,7 @@
#include <stdio.h>
#include <stdlib.h>
#include "typearith.h"
#include "m
emory
.h"
#include "m
palloc
.h"
#if defined(_MSC_VER)
...
...
Modules/_decimal/libmpdec/m
emory
.h
→
Modules/_decimal/libmpdec/m
palloc
.h
View file @
8e1da582
...
...
@@ -26,8 +26,8 @@
*/
#ifndef M
EMORY
_H
#define M
EMORY
_H
#ifndef M
PALLOC
_H
#define M
PALLOC
_H
#include "mpdecimal.h"
...
...
Modules/_decimal/libmpdec/mpdecimal.c
View file @
8e1da582
...
...
@@ -36,7 +36,7 @@
#include "bits.h"
#include "convolute.h"
#include "crt.h"
#include "m
emory
.h"
#include "m
palloc
.h"
#include "typearith.h"
#include "umodarith.h"
...
...
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