summaryrefslogtreecommitdiff
path: root/lib/libcrypt/crypt.c
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>1998-02-03 19:12:13 +0000
committerperry <perry@NetBSD.org>1998-02-03 19:12:13 +0000
commit0b7831a37b834b484dcd99d40c951c0cbdb1a28e (patch)
tree7230f3e2d76be2c9988aa02ca7998d92902b69eb /lib/libcrypt/crypt.c
parentb280ec02687536808039948055c5bc643c52aeb2 (diff)
remove obsolete register declarations
Diffstat (limited to 'lib/libcrypt/crypt.c')
-rw-r--r--lib/libcrypt/crypt.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libcrypt/crypt.c b/lib/libcrypt/crypt.c
index baa3dc2c73d..3a993e8231f 100644
--- a/lib/libcrypt/crypt.c
+++ b/lib/libcrypt/crypt.c
@@ -1,4 +1,4 @@
-/* $NetBSD: crypt.c,v 1.9 1997/11/04 03:31:45 cgd Exp $ */
+/* $NetBSD: crypt.c,v 1.10 1998/02/03 19:12:14 perry Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -41,7 +41,7 @@
#if 0
static char sccsid[] = "@(#)crypt.c 8.1.1.1 (Berkeley) 8/18/93";
#else
-__RCSID("$NetBSD: crypt.c,v 1.9 1997/11/04 03:31:45 cgd Exp $");
+__RCSID("$NetBSD: crypt.c,v 1.10 1998/02/03 19:12:14 perry Exp $");
#endif
#endif /* not lint */
@@ -623,11 +623,11 @@ des_cipher(in, out, salt, num_iter)
{
/* variables that we want in registers, most important first */
#if defined(pdp11)
- register int j;
+ int j;
#endif
- register int32_t L0, L1, R0, R1, k;
- register C_block *kp;
- register int ks_inc, loop_count;
+ int32_t L0, L1, R0, R1, k;
+ C_block *kp;
+ int ks_inc, loop_count;
C_block B;
L0 = salt;
@@ -682,7 +682,7 @@ des_cipher(in, out, salt, num_iter)
/* use this if your "long" int indexing is slow */
#define DOXOR(x,y,i) j=B.b[i]; x^=SPTAB(SPE[0][i],j); y^=SPTAB(SPE[1][i],j);
#else
- /* use this if "k" is allocated to a register ... */
+ /* use this if "k" is allocated to a ... */
#define DOXOR(x,y,i) k=B.b[i]; x^=SPTAB(SPE[0][i],k); y^=SPTAB(SPE[1][i],k);
#endif
#endif