diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2018-01-27 16:16:37 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2018-01-27 16:16:37 (GMT) |
commit | 4defba3b95ec0f52ce75b8466831d30fb5d333f3 (patch) | |
tree | afd798704c96cc3f12a1ae38ede0863ffef56938 /pyconfig.h.in | |
parent | 60da99b8e2f7bf497569ae4d6c218866575729bf (diff) | |
download | cpython-4defba3b95ec0f52ce75b8466831d30fb5d333f3.zip cpython-4defba3b95ec0f52ce75b8466831d30fb5d333f3.tar.gz cpython-4defba3b95ec0f52ce75b8466831d30fb5d333f3.tar.bz2 |
bpo-31368: Expose preadv and pwritev in the os module (#5239)
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index fd5a0c3..27fe136 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -710,6 +710,12 @@ /* Define to 1 if you have the `pread' function. */ #undef HAVE_PREAD +/* Define to 1 if you have the `preadv' function. */ +#undef HAVE_PREADV + +/* Define to 1 if you have the `preadv2' function. */ +#undef HAVE_PREADV2 + /* Define if you have the 'prlimit' functions. */ #undef HAVE_PRLIMIT @@ -746,6 +752,12 @@ /* Define to 1 if you have the `pwrite' function. */ #undef HAVE_PWRITE +/* Define to 1 if you have the `pwritev' function. */ +#undef HAVE_PWRITEV + +/* Define to 1 if you have the `pwritev2' function. */ +#undef HAVE_PWRITEV2 + /* Define to 1 if you have the `readlink' function. */ #undef HAVE_READLINK |