From ea13740a37347d68d096b11b87c9167917ccfc22 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 13 Sep 2018 21:57:31 -0700 Subject: bpo-34674: Assume unistd.h exists on Unix. (GH-9290) --- Include/Python.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index bf1ca6cfe9..1bac5bd542 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -32,7 +32,7 @@ #include #endif #include -#ifdef HAVE_UNISTD_H +#ifndef MS_WINDOWS #include #endif #ifdef HAVE_CRYPT_H -- cgit v1.2.1