diff options
author | Andreas Schwab <schwab@suse.de> | 1997-11-25 13:44:34 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1997-11-25 13:44:34 +0000 |
commit | 4c571d09039939eb7493e9836300caf0f066e7a1 (patch) | |
tree | bbf6adb15232e7083d8cfcf55894850712d2f46e /src/systty.h | |
parent | 35a05ccae646f5207003f53a61ab1f0217853e95 (diff) | |
download | emacs-4c571d09039939eb7493e9836300caf0f066e7a1.tar.gz |
Add prototypes.
Diffstat (limited to 'src/systty.h')
-rw-r--r-- | src/systty.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/systty.h b/src/systty.h index 4b8c2262ea0..adc5f5f4961 100644 --- a/src/systty.h +++ b/src/systty.h @@ -392,6 +392,10 @@ struct emacs_tty { expression, so we moved them out to their own functions in sysdep.c. */ #define EMACS_GET_TTY(fd, p) (emacs_get_tty ((fd), (p))) #define EMACS_SET_TTY(fd, p, waitp) (emacs_set_tty ((fd), (p), (waitp))) +#ifdef P_ /* Unfortunately this file is sometimes included before lisp.h */ +extern int emacs_get_tty P_ ((int, struct emacs_tty *)); +extern int emacs_set_tty P_ ((int, struct emacs_tty *, int)); +#endif /* Define EMACS_TTY_TABS_OK. */ |