From 73c6870b18b8289171acd66d63bdd7ce8fb819b6 Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 20 Mar 2002 17:55:10 +0000 Subject: Remove 'register' keyword. It does not help modern compilers, and some may take some hit from it. (I also found several functions that listed *every* of its 10 local vars with "register" -- just how many free registers do people think machines have?) --- sbin/startslip/startslip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbin/startslip/startslip.c') diff --git a/sbin/startslip/startslip.c b/sbin/startslip/startslip.c index f273ab3..c647942 100644 --- a/sbin/startslip/startslip.c +++ b/sbin/startslip/startslip.c @@ -513,7 +513,7 @@ getline(buf, size, fd, fintimeout) int size, fd; time_t fintimeout; { - register int i; + int i; int ret; fd_set readfds; struct timeval tv; -- cgit v1.1