File: ttydefaults.h

package info (click to toggle)
bsdgames-nonfree 2.5-2
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 664 kB
  • ctags: 817
  • sloc: ansic: 10,338; sh: 481; makefile: 49
file content (15 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ttydefaults.h - bsd-games wrapper for <sys/ttydefaults.h> */

#include <features.h>

#ifdef __GLIBC__
#include_next <sys/ttydefaults.h>
#endif

#ifndef CTRL
#define CTRL(x)	((x) & 037)
#endif

#ifndef OXTABS
#define OXTABS	XTABS
#endif