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
47ad5e7d
Commit
47ad5e7d
authored
Aug 04, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
moved stuff around to resemble main.c
parent
6ec1efb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
Python/frozenmain.c
Python/frozenmain.c
+8
-5
No files found.
Python/frozenmain.c
View file @
47ad5e7d
...
@@ -26,17 +26,20 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
...
@@ -26,17 +26,20 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
#include "Python.h"
extern
char
*
getenv
();
extern
int
Py_DebugFlag
;
/* For parser.c, declared in pythonrun.c */
extern
int
Py_VerboseFlag
;
/* For import.c, declared in pythonrun.c */
extern
int
Py_SuppressPrintingFlag
;
/* For ceval.c, declared in pythonrun.c */
/* Subroutines that live in their own file */
extern
char
*
getversion
();
extern
char
*
getversion
();
extern
char
*
getcopyright
();
extern
char
*
getcopyright
();
extern
int
Py_DebugFlag
;
/* For getprogramname(); set by main() */
extern
int
Py_VerboseFlag
;
extern
int
Py_SuppressPrintingFlag
;
static
char
*
argv0
;
static
char
*
argv0
;
/* Main program */
int
main
(
argc
,
argv
)
main
(
argc
,
argv
)
int
argc
;
int
argc
;
char
**
argv
;
char
**
argv
;
...
...
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