From 6c6ddf97c402709713d668d0ed53836a7749ba99 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Mon, 29 Jan 2018 01:56:10 +0000 Subject: bpo-20104: Expose `posix_spawn` in the os module (GH-5109) Add os.posix_spawn to wrap the low level POSIX API of the same name. Contributed by Pablo Galindo. --- pyconfig.h.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pyconfig.h.in') diff --git a/pyconfig.h.in b/pyconfig.h.in index 27fe136a97..a18e3ca854 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -707,6 +707,9 @@ /* Define to 1 if you have the `posix_fallocate' function. */ #undef HAVE_POSIX_FALLOCATE +/* Define to 1 if you have the `posix_spawn' function. */ +#undef HAVE_POSIX_SPAWN + /* Define to 1 if you have the `pread' function. */ #undef HAVE_PREAD -- cgit v1.2.1