This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: posixmodule.c needs stdio.h
Type: compile error Stage: needs patch
Components: Library (Lib) Versions: Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: gregory.p.smith Nosy List: gregory.p.smith, philthompson10, python-dev
Priority: normal Keywords:

Created on 2016-05-28 17:03 by philthompson10, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg266561 - (view) Author: Phil Thompson (philthompson10) Date: 2016-05-28 17:03
posixmodule.c needs to #include <stdio.h> to get the declaration of ctermid(). On most platforms this happens as a side effect of including other .h files but does not on Android.
msg266575 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-05-28 21:06
New changeset c8e113bf56ae by Gregory P. Smith in branch '3.5':
Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().
https://hg.python.org/cpython/rev/c8e113bf56ae

New changeset 74fcfc29187e by Gregory P. Smith in branch 'default':
Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().
https://hg.python.org/cpython/rev/74fcfc29187e
History
Date User Action Args
2022-04-11 14:58:31adminsetgithub: 71333
2016-05-28 21:08:17gregory.p.smithsetstatus: open -> closed
assignee: gregory.p.smith

resolution: fixed
nosy: + gregory.p.smith
2016-05-28 21:06:53python-devsetnosy: + python-dev
messages: + msg266575
2016-05-28 17:08:42serhiy.storchakasetstage: needs patch
2016-05-28 17:03:27philthompson10create