blob: 1b95c7cd1a5a1a045824fd151cfc1d387929b0c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* $OpenBSD: ttydef.h,v 1.5 2002/01/18 08:37:08 art Exp $ */
#ifndef TTYDEF_H
#define TTYDEF_H
/*
* Terminfo terminal file, nothing special, just make it big
* enough for windowing systems.
*/
#define GOSLING /* Compile in fancy display. */
/* #define MEMMAP *//* Not memory mapped video. */
/* #define MOVE_STANDOUT *//* don't move in standout mode */
#define STANDOUT_GLITCH /* possible standout glitch */
#define TERMCAP /* for possible use in ttyio.c */
#define getkbd() (ttgetc())
#ifndef XKEYS
#define ttykeymapinit() {}
#endif
#define putpad(str, num) tputs(str, num, ttputc)
#define KFIRST K00
#define KLAST K00
#endif /* TTYDEF_H */
|