From: Andrew M. Kuchling Date: Sun, 28 Jan 2001 18:10:23 +0000 (+0000) Subject: Bug #130117: add a prototype required to compile cleanly on IRIX X-Git-Tag: v2.1a2~113 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=399b8af5637720d91bd503250b362f4717009eca;p=python Bug #130117: add a prototype required to compile cleanly on IRIX (contributed by Paul Jackson) --- diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index d1ffe878f5..a49d24fb9a 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__)