summaryrefslogtreecommitdiff
path: root/src/factor.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-06 16:25:26 +0000
committerJim Meyering <jim@meyering.net>2005-03-06 16:25:26 +0000
commitbd2147af165cf0ec400cc50d63cc928abc123847 (patch)
tree6aaed1d7b9edfe0e72775bbe30e88cbd0296c203 /src/factor.c
parent2a005547b7b9865df82399824c0d3823d6638efb (diff)
downloadcoreutils-bd2147af165cf0ec400cc50d63cc928abc123847.tar.xz
Remove `register' keyword.
Diffstat (limited to 'src/factor.c')
-rw-r--r--src/factor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/factor.c b/src/factor.c
index 4b8f39ced..53f2dac16 100644
--- a/src/factor.c
+++ b/src/factor.c
@@ -1,5 +1,5 @@
/* factor -- print prime factors of n.
- Copyright (C) 86, 1995-2004 Free Software Foundation, Inc.
+ Copyright (C) 86, 1995-2005 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -97,7 +97,7 @@ Print the prime factors of each NUMBER.\n\
static size_t
factor (uintmax_t n0, size_t max_n_factors, uintmax_t *factors)
{
- register uintmax_t n = n0, d, q;
+ uintmax_t n = n0, d, q;
size_t n_factors = 0;
unsigned char const *w = wheel_tab;