mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
gh-108765: Python.h no longer includes <sys/time.h> (#108775)
Python.h no longer includes <time.h>, <sys/select.h> and <sys/time.h> standard header files. * Add <time.h> include to xxsubtype.c. * Add <sys/time.h> include to posixmodule.c and semaphore.c. * readline.c includes <sys/select.h> instead of <sys/time.h>. * resource.c no longer includes <time.h> and <sys/time.h>.
This commit is contained in:
parent
bdc3c884cd
commit
e7de0c5901
11 changed files with 43 additions and 37 deletions
|
|
@ -57,6 +57,10 @@
|
|||
|
||||
#include <stdio.h> // ctermid()
|
||||
#include <stdlib.h> // system()
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
# include <sys/time.h> // futimes()
|
||||
#endif
|
||||
|
||||
|
||||
// SGI apparently needs this forward declaration
|
||||
#ifdef HAVE__GETPTY
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue