don't kill 'register' in comments!

This commit is contained in:
mikel 1998-02-04 06:39:33 +00:00
parent a235399817
commit 95eeab3bb2
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: crypt.c,v 1.10 1998/02/03 19:12:14 perry Exp $ */
/* $NetBSD: crypt.c,v 1.11 1998/02/04 06:39:33 mikel 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.10 1998/02/03 19:12:14 perry Exp $");
__RCSID("$NetBSD: crypt.c,v 1.11 1998/02/04 06:39:33 mikel Exp $");
#endif
#endif /* not lint */
@ -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 ... */
/* use this if "k" is allocated to a register ... */
#define DOXOR(x,y,i) k=B.b[i]; x^=SPTAB(SPE[0][i],k); y^=SPTAB(SPE[1][i],k);
#endif
#endif