diff --git a/lib/libutil/pty.c b/lib/libutil/pty.c index 21f538f0ed6c..ad18ee179e56 100644 --- a/lib/libutil/pty.c +++ b/lib/libutil/pty.c @@ -1,4 +1,4 @@ -/* $NetBSD: pty.c,v 1.15 2000/07/05 11:46:42 ad Exp $ */ +/* $NetBSD: pty.c,v 1.16 2000/07/10 11:16:38 ad 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.15 2000/07/05 11:46:42 ad Exp $"); +__RCSID("$NetBSD: pty.c,v 1.16 2000/07/10 11:16:38 ad Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -56,12 +56,7 @@ __RCSID("$NetBSD: pty.c,v 1.15 2000/07/05 11:46:42 ad Exp $"); #include #include -#ifdef i386 -/* PCVT conflicts with ttyv*. */ -#define TTY_LETTERS "pqrstuwxyzPQRST" -#else -#define TTY_LETTERS "pqrstuvwxyzPQRST" -#endif +#define TTY_LETTERS "pqrstuvwxyzPQRST" int openpty(int *amaster, int *aslave, char *name, struct termios *termp,