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
7cf1fcf3
Commit
7cf1fcf3
authored
Aug 19, 1996
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Always include config.h
parent
1e612490
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
0 additions
and
25 deletions
+0
-25
Include/allobjects.h
Include/allobjects.h
+0
-2
Include/pgenheaders.h
Include/pgenheaders.h
+0
-2
Modules/md5c.c
Modules/md5c.c
+0
-2
Modules/regexpr.c
Modules/regexpr.c
+0
-2
Parser/intrcheck.c
Parser/intrcheck.c
+0
-3
Parser/myreadline.c
Parser/myreadline.c
+0
-2
Python/atof.c
Python/atof.c
+0
-2
Python/fmod.c
Python/fmod.c
+0
-2
Python/getmtime.c
Python/getmtime.c
+0
-2
Python/mystrtoul.c
Python/mystrtoul.c
+0
-2
Python/strtod.c
Python/strtod.c
+0
-2
Python/thread.c
Python/thread.c
+0
-2
No files found.
Include/allobjects.h
View file @
7cf1fcf3
...
...
@@ -28,9 +28,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Include nearly all Python header files */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* config.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT
/* declarations for DLL import/export */
...
...
Include/pgenheaders.h
View file @
7cf1fcf3
...
...
@@ -30,9 +30,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Include files and extern declarations used by most of the parser. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* config.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT
/* declarations for DLL import/export */
...
...
Modules/md5c.c
View file @
7cf1fcf3
...
...
@@ -23,9 +23,7 @@ These notices must be retained in any copies of any part of this
documentation and/or software.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "md5.h"
/* Constants for MD5Transform routine.
...
...
Modules/regexpr.c
View file @
7cf1fcf3
...
...
@@ -24,9 +24,7 @@ from GNU regexp.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
/* For Win* specific redefinition of printf c.s. */
#endif
#include "myproto.h"
/* For PROTO macro --Guido */
...
...
Parser/intrcheck.c
View file @
7cf1fcf3
...
...
@@ -24,10 +24,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Check for interrupts */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "myproto.h"
#include "intrcheck.h"
...
...
Parser/myreadline.c
View file @
7cf1fcf3
...
...
@@ -32,9 +32,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- a malloc'ed string ending in \n normally
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <string.h>
...
...
Python/atof.c
View file @
7cf1fcf3
...
...
@@ -27,9 +27,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
and is slow and inaccurate.
But it's good enough for the occasional string literal... */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <ctype.h>
...
...
Python/fmod.c
View file @
7cf1fcf3
...
...
@@ -24,9 +24,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Portable fmod(x, y) implementation for systems that don't have it */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mymath.h"
#include <errno.h>
...
...
Python/getmtime.c
View file @
7cf1fcf3
...
...
@@ -26,9 +26,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* (A separate file because this may be OS dependent) */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h>
...
...
Python/mystrtoul.c
View file @
7cf1fcf3
...
...
@@ -22,9 +22,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
******************************************************************/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* Convert a possibly signed character to a nonnegative int */
/* XXX This assumes characters are 8 bits wide */
...
...
Python/strtod.c
View file @
7cf1fcf3
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
/* comp.sources.misc strtod(), as posted in comp.lang.tcl,
with bugfix for "123000.0" and acceptance of space after 'e' sign nuked.
...
...
Python/thread.c
View file @
7cf1fcf3
...
...
@@ -28,9 +28,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
which is included by this file dependent on config settings.
Stuff shared by all thread_*.h files is collected here. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.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