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
f2615264
Commit
f2615264
authored
Dec 04, 1998
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Need to add default decl of DL_IMPORT, for mymalloc.h
parent
3886bb69
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
Parser/intrcheck.c
Parser/intrcheck.c
+6
-0
Python/thread.c
Python/thread.c
+5
-0
No files found.
Parser/intrcheck.c
View file @
f2615264
...
...
@@ -32,6 +32,12 @@ PERFORMANCE OF THIS SOFTWARE.
/* Check for interrupts */
#include "config.h"
/* config.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT
/* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
#include "myproto.h"
#include "mymalloc.h"
/* For ANY */
#include "intrcheck.h"
...
...
Python/thread.c
View file @
f2615264
...
...
@@ -37,6 +37,11 @@ PERFORMANCE OF THIS SOFTWARE.
#include "config.h"
/* config.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT
/* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
#include <stdio.h>
#ifdef HAVE_STDLIB_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