mirror of
https://git.savannah.gnu.org/git/screen.git
synced 2026-02-10 17:31:59 +02:00
fix -Wdeprecated-non-prototype
Passing arguments to 'tparm' without a prototype is deprecated in all versions of C and is not supported in C2x [-Wdeprecated-non-prototype]
This commit is contained in:
@@ -27,7 +27,7 @@ extern int tgetnum(char *);
|
||||
extern char *tgetstr(char *, char **);
|
||||
extern char *tgoto(const char *, int, int);
|
||||
extern int tputs(const char *, int, int (*)(int));
|
||||
extern char *tparm();
|
||||
extern char *tparm(char *str, ...);
|
||||
|
||||
struct term
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user