X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/b024a9466a0e238e053d0464f4a4f9b19d04648b..44517b21abc4c243cdc7df264c629d592d9fb4cf:/src/tparam.h diff --git a/src/tparam.h b/src/tparam.h index 3cd3e6053c..cc53bb9ea1 100644 --- a/src/tparam.h +++ b/src/tparam.h @@ -1,13 +1,13 @@ /* Interface definitions for termcap entries. -Copyright (C) 2011 Free Software Foundation, Inc. +Copyright (C) 2011-2016 Free Software Foundation, Inc. This file is part of GNU Emacs. GNU Emacs is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +the Free Software Foundation, either version 3 of the License, or (at +your option) any later version. GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -17,6 +17,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see . */ +#ifndef EMACS_TPARAM_H +#define EMACS_TPARAM_H /* Don't try to include termcap.h. On some systems, configure finds a non-standard termcap.h that the main build won't find. */ @@ -29,3 +31,9 @@ char *tgetstr (const char *, char **); char *tgoto (const char *, int, int); char *tparam (const char *, char *, int, int, int, int, int); + +extern char PC; +extern char *BC; +extern char *UP; + +#endif /* EMACS_TPARAM_H */