summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/crypt/blowfish.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libc/crypt/blowfish.c b/src/lib/libc/crypt/blowfish.c
index e66d9befa6..05ad00d7a1 100644
--- a/src/lib/libc/crypt/blowfish.c
+++ b/src/lib/libc/crypt/blowfish.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: blowfish.c,v 1.20 2021/11/29 01:04:45 djm Exp $ */ 1/* $OpenBSD: blowfish.c,v 1.21 2022/08/28 11:11:25 jsg Exp $ */
2/* 2/*
3 * Blowfish block cipher for OpenBSD 3 * Blowfish block cipher for OpenBSD
4 * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> 4 * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
@@ -44,13 +44,6 @@
44#include <sys/types.h> 44#include <sys/types.h>
45#include <blf.h> 45#include <blf.h>
46 46
47#undef inline
48#ifdef __GNUC__
49#define inline __inline
50#else /* !__GNUC__ */
51#define inline
52#endif /* !__GNUC__ */
53
54/* Function for Feistel Networks */ 47/* Function for Feistel Networks */
55 48
56#define F(s, x) ((((s)[ (((x)>>24)&0xFF)] \ 49#define F(s, x) ((((s)[ (((x)>>24)&0xFF)] \