summaryrefslogtreecommitdiff
path: root/src/test.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-06 16:19:44 +0000
committerJim Meyering <jim@meyering.net>2005-03-06 16:19:44 +0000
commit74e3e13b3a19afc2f8573afbad0002060b7e3d4d (patch)
treec793d9d544dc802791ab37d884eae6f98a14d7db /src/test.c
parentc747ee56a77e58a19327a48e55d005fbef269d0f (diff)
downloadcoreutils-74e3e13b3a19afc2f8573afbad0002060b7e3d4d.tar.xz
Remove register keyword.
Diffstat (limited to 'src/test.c')
-rw-r--r--src/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test.c b/src/test.c
index 2caebd4de..18dd00eda 100644
--- a/src/test.c
+++ b/src/test.c
@@ -144,7 +144,7 @@ integer_expected_error (char const *pch)
valid number. Stuff the converted number into RESULT if RESULT is
not null. */
static bool
-is_int (register char *string, intmax_t *result)
+is_int (char *string, intmax_t *result)
{
int sign;
intmax_t value;
@@ -306,7 +306,7 @@ term (void)
static bool
binary_operator (bool l_is_l)
{
- register int op;
+ int op;
struct stat stat_buf, stat_spare;
intmax_t l, r;
/* Is the right integer expression of the form '-l string'? */