blob: 80a340c53a5d3e1811eed7eb048c0370cf525c17 (
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
|
/* $OpenBSD: ttydef.h,v 1.9 2005/06/14 18:14:40 kjell Exp $ */
/* This file is in the public domain. */
#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 STANDOUT_GLITCH /* possible standout glitch */
#define TERMCAP /* for possible use in ttyio.c */
#ifdef undef
#define MEMMAP /* Not memory mapped video. */
#define MOVE_STANDOUT /* don't move in standout mode */
#endif /* undef */
#define putpad(str, num) tputs(str, num, ttputc)
#define KFIRST K00
#define KLAST K00
#endif /* TTYDEF_H */
|