123449Smckusick /* 229052Smckusick * Copyright (c) 1982, 1986 Regents of the University of California. 323449Smckusick * All rights reserved. The Berkeley software License Agreement 423449Smckusick * specifies the terms and conditions for redistribution. 523449Smckusick * 6*46280Sbostic * @(#)ttydev.h 7.7 (Berkeley) 02/05/91 723449Smckusick */ 89399Ssam 99399Ssam /* 1039550Smarc * COMPATABILITY HEADER FILE -- 1139550Smarc */ 1239550Smarc 1339550Smarc /* 149399Ssam * Terminal definitions related to underlying hardware. 159399Ssam */ 16*46280Sbostic #ifndef _TTYDEV_H_ 17*46280Sbostic #define _TTYDEV_H_ 189399Ssam 1937599Smarc #ifdef USE_OLD_TTY 2037599Smarc /* 2137599Smarc * Speeds 2237599Smarc */ 239399Ssam #define B0 0 2437599Smarc #define B50 1 2537599Smarc #define B75 2 2637599Smarc #define B110 3 2737599Smarc #define B134 4 2837599Smarc #define B150 5 2937599Smarc #define B200 6 3037599Smarc #define B300 7 3137599Smarc #define B600 8 3237599Smarc #define B1200 9 3337599Smarc #define B1800 10 3437599Smarc #define B2400 11 3537599Smarc #define B4800 12 3637599Smarc #define B9600 13 3737599Smarc #define EXTA 14 3837599Smarc #define EXTB 15 3939550Smarc #endif /* USE_OLD_TTY */ 409399Ssam 41*46280Sbostic #endif /* !_TTYDEV_H_ */ 42