diff options
author | obrien <obrien@FreeBSD.org> | 2002-03-21 18:49:23 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-03-21 18:49:23 +0000 |
commit | 1196344bb37334ed0f8808056a53ca058758843c (patch) | |
tree | 12b252b7426e8a8904ef257bea10fea6038142f4 /lib/libc/stdio/ftell.c | |
parent | 8ee1755c8ef3729bb2d3c4bfae2b85b786fdaf70 (diff) | |
download | FreeBSD-src-1196344bb37334ed0f8808056a53ca058758843c.zip FreeBSD-src-1196344bb37334ed0f8808056a53ca058758843c.tar.gz |
Remove 'register' keyword.
Diffstat (limited to 'lib/libc/stdio/ftell.c')
-rw-r--r-- | lib/libc/stdio/ftell.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdio/ftell.c b/lib/libc/stdio/ftell.c index 174eaa8..9d51750 100644 --- a/lib/libc/stdio/ftell.c +++ b/lib/libc/stdio/ftell.c @@ -56,9 +56,9 @@ static const char rcsid[] = */ long ftell(fp) - register FILE *fp; + FILE *fp; { - register off_t rv; + off_t rv; rv = ftello(fp); if (rv > LONG_MAX) { @@ -73,7 +73,7 @@ ftell(fp) */ off_t ftello(fp) - register FILE *fp; + FILE *fp; { fpos_t rv; int ret; @@ -92,10 +92,10 @@ ftello(fp) int _ftello(fp, offset) - register FILE *fp; + FILE *fp; fpos_t *offset; { - register fpos_t pos; + fpos_t pos; size_t n; if (fp->_seek == NULL) { |