gh-108765: Python.h no longer includes <unistd.h> (#108783)

This commit is contained in:
Victor Stinner 2023-09-02 16:50:18 +02:00 committed by GitHub
parent 4f9b706c6f
commit 594b00057e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 55 additions and 42 deletions

View file

@ -4,7 +4,8 @@
#include "Python.h"
#include "posixmodule.h"
#include <pwd.h>
#include <pwd.h> // getpwuid()
#include <unistd.h> // sysconf()
#include "clinic/pwdmodule.c.h"
/*[clinic input]