[issue27146] posixmodule.c needs stdio.h

2016-05-28 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- assignee: -> gregory.p.smith nosy: +gregory.p.smith resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue27146] posixmodule.c needs stdio.h

2016-05-28 Thread Roundup Robot
Roundup Robot added the comment: 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

[issue27146] posixmodule.c needs stdio.h

2016-05-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue27146] posixmodule.c needs stdio.h

2016-05-28 Thread Phil Thompson
New submission from Phil Thompson: posixmodule.c needs to #include 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. -- components: Library (Lib) messages: 266561 nosy: philthompson10 priority: nor