aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tail/forward.c
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2000-12-03 17:05:45 +0000
committerJeroen Ruigrok van der Werven <asmodai@FreeBSD.org>2000-12-03 17:05:45 +0000
commit48a1ef22849bc50fdfcdbccfd1d44b116d14f50a (patch)
tree50e0606fc31a68cfc97df8722fb1ee0fe9c704ed /usr.bin/tail/forward.c
parentbdc45483d5340b8e4803643e885d85a1a7c7bbad (diff)
downloadsrc-48a1ef22849bc50fdfcdbccfd1d44b116d14f50a.tar.gz
src-48a1ef22849bc50fdfcdbccfd1d44b116d14f50a.zip
Remove register keyword usage with prejudice.
Modern compilers are smarter when it comes to allocating register usage.
Notes
Notes: svn path=/head/; revision=69552
Diffstat (limited to 'usr.bin/tail/forward.c')
-rw-r--r--usr.bin/tail/forward.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tail/forward.c b/usr.bin/tail/forward.c
index 6a14351073b1..a80a22ab2231 100644
--- a/usr.bin/tail/forward.c
+++ b/usr.bin/tail/forward.c
@@ -269,8 +269,8 @@ rlines(fp, off, sbp)
long off;
struct stat *sbp;
{
- register off_t size;
- register char *p;
+ off_t size;
+ char *p;
char *start;
if (!(size = sbp->st_size))