diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-21 18:49:23 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-21 18:49:23 +0000 |
| commit | 8fb3f3f68288ae2b1b53dd65e3dd673d83c80f4c (patch) | |
| tree | 12b252b7426e8a8904ef257bea10fea6038142f4 /lib/libc/stdio/ftell.c | |
| parent | ddf23aa842f17afcb0e9bfd88bfad20f6431d0a3 (diff) | |
Notes
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 174eaa847369..9d5175061ee9 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) { |
