30617: rationalise replacement tgoto() prototype

This commit is contained in:
Peter Stephenson 2012-08-16 13:42:21 +00:00
parent fbc73f0583
commit 1849668c81
3 changed files with 15 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2012-08-16 Peter Stephenson <pws@csr.com>
* 30617: Src/prototypes.h, Src/zsh_system.h: rationalise
replacement of tgoto() prototype which could appear twice
inconsistently.
2012-08-14 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Etc/relnote_5.0.0.txt, Etc/.distfiles: add.
@ -51,5 +57,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5694 $
* $Revision: 1.5695 $
*****************************************************

View file

@ -49,11 +49,18 @@ extern int tgetent _((char *bp, TC_CONST char *name));
extern int tgetnum _((char *id));
extern int tgetflag _((char *id));
extern char *tgetstr _((char *id, char **area));
extern char *tgoto _((TC_CONST char *cm, int destcol, int destline));
extern int tputs _((TC_CONST char *cp, int affcnt, int (*outc) (int)));
#undef TC_CONST
#endif
/*
* Some systems that do have termcap headers nonetheless don't
* declare tgoto, so we detect if that is missing separately.
*/
#ifdef TGOTO_PROTO_MISSING
char *tgoto(const char *cap, int col, int row);
#endif
/* MISSING PROTOTYPES FOR VARIOUS OPERATING SYSTEMS */
#if defined(__hpux) && defined(_HPUX_SOURCE) && !defined(_XPG4_EXTENDED)

View file

@ -874,7 +874,3 @@ extern short ospeed;
# endif
# endif
#endif
#ifdef TGOTO_PROTO_MISSING
char *tgoto(const char *cap, int col, int row);
#endif