mirror of https://github.com/python/cpython
GH-110749: fix unistd.h import in file_tokenizer.c (#110750)
This commit is contained in:
parent
5257ade0bc
commit
23645420dc
|
@ -1,13 +1,13 @@
|
|||
#ifdef HAVE_UNISTD_H
|
||||
# include <unistd.h> // read()
|
||||
#endif
|
||||
|
||||
#include "Python.h"
|
||||
#include "pycore_call.h"
|
||||
#include "pycore_import.h"
|
||||
#include "pycore_fileutils.h"
|
||||
#include "errcode.h"
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
# include <unistd.h> // lseek(), read()
|
||||
#endif
|
||||
|
||||
#include "helpers.h"
|
||||
#include "../lexer/state.h"
|
||||
#include "../lexer/lexer.h"
|
||||
|
|
Loading…
Reference in New Issue