From 1196344bb37334ed0f8808056a53ca058758843c Mon Sep 17 00:00:00 2001 From: obrien Date: Thu, 21 Mar 2002 18:49:23 +0000 Subject: Remove 'register' keyword. --- lib/libc/stdio/fgets.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/libc/stdio/fgets.c') diff --git a/lib/libc/stdio/fgets.c b/lib/libc/stdio/fgets.c index ccf5535..1802155 100644 --- a/lib/libc/stdio/fgets.c +++ b/lib/libc/stdio/fgets.c @@ -57,12 +57,12 @@ static const char rcsid[] = char * fgets(buf, n, fp) char *buf; - register int n; - register FILE *fp; + int n; + FILE *fp; { - register size_t len; - register char *s; - register unsigned char *p, *t; + size_t len; + char *s; + unsigned char *p, *t; if (n <= 0) /* sanity check */ return (NULL); -- cgit v1.1