remove unused blowfish inline defines
authorjsg <jsg@openbsd.org>
Sun, 28 Aug 2022 11:11:25 +0000 (11:11 +0000)
committerjsg <jsg@openbsd.org>
Sun, 28 Aug 2022 11:11:25 +0000 (11:11 +0000)
inline use was removed in 1998

lib/libc/crypt/blowfish.c
sys/crypto/blf.c
sys/lib/libsa/blowfish.c

index e66d9be..05ad00d 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: blowfish.c,v 1.20 2021/11/29 01:04:45 djm Exp $ */
+/* $OpenBSD: blowfish.c,v 1.21 2022/08/28 11:11:25 jsg Exp $ */
 /*
  * Blowfish block cipher for OpenBSD
  * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
 #include <sys/types.h>
 #include <blf.h>
 
-#undef inline
-#ifdef __GNUC__
-#define inline __inline
-#else                          /* !__GNUC__ */
-#define inline
-#endif                         /* !__GNUC__ */
-
 /* Function for Feistel Networks */
 
 #define F(s, x) ((((s)[        (((x)>>24)&0xFF)]  \
index 957d83d..c8a0412 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: blf.c,v 1.8 2021/11/29 01:04:45 djm Exp $     */
+/*     $OpenBSD: blf.c,v 1.9 2022/08/28 11:11:25 jsg Exp $     */
 
 /*
  * Blowfish block cipher for OpenBSD
 
 #include <crypto/blf.h>
 
-#undef inline
-#ifdef __GNUC__
-#define inline __inline
-#else                          /* !__GNUC__ */
-#define inline
-#endif                         /* !__GNUC__ */
-
 /* Function for Feistel Networks */
 
 #define F(s, x) ((((s)[        (((x)>>24)&0xFF)]  \
index c89e330..55423d6 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: blowfish.c,v 1.2 2021/11/29 01:04:45 djm Exp $ */
+/* $OpenBSD: blowfish.c,v 1.3 2022/08/28 11:11:25 jsg Exp $ */
 /*
  * Blowfish block cipher for OpenBSD
  * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
 
 #include "blowfish.h"
 
-#undef inline
-#ifdef __GNUC__
-#define inline __inline
-#else                          /* !__GNUC__ */
-#define inline
-#endif                         /* !__GNUC__ */
-
 /* Function for Feistel Networks */
 
 #define F(s, x) ((((s)[        (((x)>>24)&0xFF)]  \