summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-01-28 18:10:23 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-01-28 18:10:23 (GMT)
commit399b8af5637720d91bd503250b362f4717009eca (patch)
tree71dc619b8a799a2cfa203d881ee029401b9a7c74 /Modules
parentc37f5b3296253b460fc3666a0d3a7df2fb3bf2b6 (diff)
downloadcpython-399b8af5637720d91bd503250b362f4717009eca.zip
cpython-399b8af5637720d91bd503250b362f4717009eca.tar.gz
cpython-399b8af5637720d91bd503250b362f4717009eca.tar.bz2
Bug #130117: add a prototype required to compile cleanly on IRIX
(contributed by Paul Jackson)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_cursesmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c
index d1ffe87..a49d24f 100644
--- a/Modules/_cursesmodule.c
+++ b/Modules/_cursesmodule.c
@@ -115,6 +115,7 @@ char *PyCursesVersion = "2.1";
extern int setupterm(char *,int,int *);
#ifdef sgi
extern char *tigetstr(char *);
+extern char *tparm(char *instring, ...);
#endif
#if defined(sgi) || defined(__sun__)