commit | fa76eeec70b1d7c28b3c201c0400faf10f1d9769 | [log] [tgz] |
---|---|---|
author | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | Sat May 28 21:03:48 2016 +0000 |
committer | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | Sat May 28 21:03:48 2016 +0000 |
tree | 65166f910fbd051c91ee4be8946685011c117ad4 | |
parent | 338502b307798e089d85e58f97f3d28922161c47 [diff] |
Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index c95668b..e5f58ab 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c
@@ -32,6 +32,8 @@ #include "winreparse.h" #endif +#include <stdio.h> /* needed for ctermid() */ + #ifdef __cplusplus extern "C" { #endif