Issue 27146: posixmodule.c needs stdio.h (original) (raw)

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 - 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 - 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:31 admin set github: 71333
2016-05-28 21:08:17 gregory.p.smith set status: open -> closedassignee: gregory.p.smithresolution: fixednosy: + gregory.p.smith
2016-05-28 21:06:53 python-dev set nosy: + python-devmessages: +
2016-05-28 17:08:42 serhiy.storchaka set stage: needs patch
2016-05-28 17:03:27 philthompson10 create