Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/lib/libutil/pty.c,v rcsdiff: /ftp/cvs/cvsroot/src/lib/libutil/pty.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.14 retrieving revision 1.14.8.2 diff -u -p -r1.14 -r1.14.8.2 --- src/lib/libutil/pty.c 1999/09/20 04:48:08 1.14 +++ src/lib/libutil/pty.c 2001/05/15 21:30:36 1.14.8.2 @@ -1,4 +1,4 @@ -/* $NetBSD: pty.c,v 1.14 1999/09/20 04:48:08 lukem Exp $ */ +/* $NetBSD: pty.c,v 1.14.8.2 2001/05/15 21:30:36 he Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)pty.c 8.3 (Berkeley) 5/16/94"; #else -__RCSID("$NetBSD: pty.c,v 1.14 1999/09/20 04:48:08 lukem Exp $"); +__RCSID("$NetBSD: pty.c,v 1.14.8.2 2001/05/15 21:30:36 he Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -56,12 +56,10 @@ __RCSID("$NetBSD: pty.c,v 1.14 1999/09/2 #include #include -#ifdef i386 -/* PCVT conflicts with ttyv*. */ -#define TTY_LETTERS "pqrstuwxyzPQRST" -#else -#define TTY_LETTERS "pqrstuvwxyzPQRST" -#endif +/* + * XXX: `v' removed until no ports are using console devices which use ttyv0 + */ +#define TTY_LETTERS "pqrstuwxyzPQRST" int openpty(amaster, aslave, name, termp, winp)