xref: /original-bsd/lib/libcurses/curses.ext (revision 092d9b4e)
1/*
2 * Copyright (c) 1981 Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that this notice is preserved and that due credit is given
7 * to the University of California at Berkeley. The name of the University
8 * may not be used to endorse or promote products derived from this
9 * software without specific prior written permission. This software
10 * is provided ``as is'' without express or implied warranty.
11 *
12 *	@(#)curses.ext	5.4 (Berkeley) 06/08/88
13 */
14
15/*
16 * External variables for the curses library
17 */
18
19/* LINTLIBRARY */
20
21# include	"curses.h"
22
23extern bool	_echoit, _rawmode, My_term, _endwin;
24
25extern char	ttytype[50], *_unctrl[];
26
27extern int	_tty_ch, LINES, COLS;
28
29extern SGTTY	_tty;
30
31char		_putchar();
32
33#ifdef DEBUG
34# define	outf	_outf
35
36FILE		*outf;
37#endif
38