From 478be95d8d1ddb2e9cb1831f0115097af1e41bc4 Mon Sep 17 00:00:00 2001 From: dholland Date: Sun, 24 May 2009 23:20:22 +0000 Subject: Abolish cgetc(). It contained one line of code, which was wrong. Call getchar() directly, and handle EOF properly instead of looping (in some cases) or pretending that EOF is 0 (which it isn't). --- trek/torped.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'trek/torped.c') diff --git a/trek/torped.c b/trek/torped.c index 388f69e1..24f3de4a 100644 --- a/trek/torped.c +++ b/trek/torped.c @@ -1,4 +1,4 @@ -/* $NetBSD: torped.c,v 1.13 2009/05/24 22:55:03 dholland Exp $ */ +/* $NetBSD: torped.c,v 1.14 2009/05/24 23:20:22 dholland Exp $ */ /* * Copyright (c) 1980, 1993 @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)torped.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: torped.c,v 1.13 2009/05/24 22:55:03 dholland Exp $"); +__RCSID("$NetBSD: torped.c,v 1.14 2009/05/24 23:20:22 dholland Exp $"); #endif #endif /* not lint */ @@ -104,7 +104,7 @@ torped(int v __unused) } else { /* see if the user wants one */ if (!testnl()) { - k = ungetc(cgetc(0), stdin); + k = ungetc(getchar(), stdin); if (k >= '0' && k <= '9') burst = 1; } -- cgit v1.2.3