mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
Keep gcc -Wall happy.
This commit is contained in:
parent
ed0af8fe70
commit
80bb9655f0
6 changed files with 38 additions and 28 deletions
|
@ -53,6 +53,10 @@ PERFORMANCE OF THIS SOFTWARE.
|
|||
#include "macglue.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
extern long getmtime(); /* In getmtime.c */
|
||||
|
||||
/* Magic word to reject .pyc files generated by other Python versions */
|
||||
|
@ -419,7 +423,7 @@ find_module(name, path, buf, buflen, p_fp)
|
|||
FILE **p_fp;
|
||||
{
|
||||
int i, npath, len, namelen;
|
||||
struct filedescr *fdp;
|
||||
struct filedescr *fdp = NULL;
|
||||
FILE *fp = NULL;
|
||||
|
||||
#ifdef MS_COREDLL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue