aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Programs/_freeze_module.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-09-02 16:50:18 +0200
committerGitHub <noreply@github.com>2023-09-02 16:50:18 +0200
commit594b00057e667e0d8d4e41748be056cdd829e919 (patch)
treeb970b7d385d30e9bb423a30bc3029cc94fe4ca4b /Programs/_freeze_module.c
parent4f9b706c6f5d4422a398146bfd011daedaef1851 (diff)
downloadcpython-594b00057e667e0d8d4e41748be056cdd829e919.tar.gz
cpython-594b00057e667e0d8d4e41748be056cdd829e919.zip
gh-108765: Python.h no longer includes <unistd.h> (#108783)
Diffstat (limited to 'Programs/_freeze_module.c')
-rw-r--r--Programs/_freeze_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Programs/_freeze_module.c b/Programs/_freeze_module.c
index e55f1d56745..f6c46fa629e 100644
--- a/Programs/_freeze_module.c
+++ b/Programs/_freeze_module.c
@@ -19,7 +19,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#ifndef MS_WINDOWS
-#include <unistd.h>
+# include <unistd.h>
#endif
uint32_t _Py_next_func_version = 1;