summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/fgets.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdio/fgets.c')
-rw-r--r--lib/libc/stdio/fgets.c10
1 files changed, 5 insertions, 5 deletions
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);
OpenPOWER on IntegriCloud