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
b4bd21cf
Commit
b4bd21cf
authored
Jul 22, 2000
by
Thomas Wouters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ANSIfy as many declarations as possible.
parent
bd8ad942
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
7 deletions
+8
-7
Python/dynload_aix.c
Python/dynload_aix.c
+1
-1
Python/dynload_dl.c
Python/dynload_dl.c
+1
-1
Python/frozenmain.c
Python/frozenmain.c
+3
-3
Python/import.c
Python/import.c
+2
-1
Python/thread_lwp.h
Python/thread_lwp.h
+1
-1
No files found.
Python/dynload_aix.c
View file @
b4bd21cf
...
...
@@ -28,7 +28,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#endif
extern
char
*
Py_GetProgramName
();
extern
char
*
Py_GetProgramName
(
void
);
typedef
struct
Module
{
struct
Module
*
next
;
...
...
Python/dynload_dl.c
View file @
b4bd21cf
...
...
@@ -16,7 +16,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include "importdl.h"
extern
char
*
Py_GetProgramName
();
extern
char
*
Py_GetProgramName
(
void
);
const
struct
filedescr
_PyImport_DynLoadFiletab
[]
=
{
{
".o"
,
"rb"
,
C_EXTENSION
},
...
...
Python/frozenmain.c
View file @
b4bd21cf
...
...
@@ -13,9 +13,9 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include "Python.h"
#ifdef MS_WIN32
extern
void
PyWinFreeze_ExeInit
();
extern
void
PyWinFreeze_ExeTerm
();
extern
int
PyInitFrozenExtensions
();
extern
void
PyWinFreeze_ExeInit
(
void
);
extern
void
PyWinFreeze_ExeTerm
(
void
);
extern
int
PyInitFrozenExtensions
(
void
);
#endif
#ifdef HAVE_UNISTD_H
...
...
Python/import.c
View file @
b4bd21cf
...
...
@@ -817,7 +817,8 @@ is_builtin(char *name)
pathname and an open file. Return NULL if the module is not found. */
#ifdef MS_COREDLL
extern
FILE
*
PyWin_FindRegisteredModule
();
extern
FILE
*
PyWin_FindRegisteredModule
(
const
char
*
,
struct
filedescr
**
,
char
*
,
int
);
#endif
#ifdef CHECK_IMPORT_CASE
...
...
Python/thread_lwp.h
View file @
b4bd21cf
...
...
@@ -106,7 +106,7 @@ void PyThread__exit_prog(int status)
PyThread_type_lock
PyThread_allocate_lock
(
void
)
{
struct
lock
*
lock
;
extern
char
*
malloc
();
extern
char
*
malloc
(
size_t
);
dprintf
((
"PyThread_allocate_lock called
\n
"
));
if
(
!
initialized
)
...
...
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