diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2012-06-21 08:45:02 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2012-06-21 08:45:02 +0000 |
commit | cbb8a3c762ba6034e5ae0c35e6d04c2de130f933 (patch) | |
tree | c348da0874d7a9eb65097cf2addb33a89f908060 /Src | |
parent | e71f43fbf72d8c8b1507a44caf6a85ce1821c2c5 (diff) | |
download | zsh-cbb8a3c762ba6034e5ae0c35e6d04c2de130f933.tar.gz zsh-cbb8a3c762ba6034e5ae0c35e6d04c2de130f933.tar.xz zsh-cbb8a3c762ba6034e5ae0c35e6d04c2de130f933.zip |
30518: attempt to supply tgoto() prototype when missing only.
For Solaris 10 and earlier.
Diffstat (limited to 'Src')
-rw-r--r-- | Src/zsh_system.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/zsh_system.h b/Src/zsh_system.h index f38533023..f20a7bb90 100644 --- a/Src/zsh_system.h +++ b/Src/zsh_system.h @@ -874,3 +874,7 @@ extern short ospeed; # endif # endif #endif + +#ifdef TGOTO_PROTO_MISSING +char *tgoto(const char *cap, int col, int row); +#endif |