summaryrefslogtreecommitdiff
path: root/lib/libcrypt
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>2005-12-24 21:11:15 +0000
committerperry <perry@NetBSD.org>2005-12-24 21:11:15 +0000
commit4e11af46bc17850573de478d514cf2fdf8638bd7 (patch)
treec73b10dd6e35a0a7007ca003d9affeaedfcb0d9f /lib/libcrypt
parent552b373ffa06138300a8b55dce0cef5c363aff86 (diff)
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
Diffstat (limited to 'lib/libcrypt')
-rw-r--r--lib/libcrypt/blowfish.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/libcrypt/blowfish.c b/lib/libcrypt/blowfish.c
index cb3a6a3f139..c0ab28952cc 100644
--- a/lib/libcrypt/blowfish.c
+++ b/lib/libcrypt/blowfish.c
@@ -1,4 +1,4 @@
-/* $NetBSD: blowfish.c,v 1.3 2003/08/06 08:34:32 jdolecek Exp $ */
+/* $NetBSD: blowfish.c,v 1.4 2005/12/24 21:11:16 perry Exp $ */
/* $OpenBSD: blowfish.c,v 1.16 2002/02/19 19:39:36 millert Exp $ */
/*
* Blowfish block cipher for OpenBSD
@@ -46,7 +46,7 @@
* directly by bcrypt.c, not built separately.
*/
-__RCSID("$NetBSD: blowfish.c,v 1.3 2003/08/06 08:34:32 jdolecek Exp $");
+__RCSID("$NetBSD: blowfish.c,v 1.4 2005/12/24 21:11:16 perry Exp $");
#include <sys/types.h>
@@ -66,12 +66,6 @@ typedef struct BlowfishContext {
u_int32_t P[BLF_N + 2]; /* Subkeys */
} blf_ctx;
-#undef inline
-#ifdef __GNUC__
-#define inline __inline
-#else /* !__GNUC__ */
-#define inline
-#endif /* !__GNUC__ */
/* Function for Feistel Networks */