From 24656ea8ee9b43cca2f99b62cecb1fa0673fede1 Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 4 Aug 2023 05:44:51 +0000 Subject: [PATCH] Move the ENGINE_new() prototype a line down --- lib/libcrypto/engine/engine.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/engine/engine.h b/lib/libcrypto/engine/engine.h index ef5878a5d38..1e04b61e572 100644 --- a/lib/libcrypto/engine/engine.h +++ b/lib/libcrypto/engine/engine.h @@ -1,4 +1,4 @@ -/* $OpenBSD: engine.h,v 1.41 2023/07/28 09:22:26 tb Exp $ */ +/* $OpenBSD: engine.h,v 1.42 2023/08/04 05:44:51 tb Exp $ */ /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL * project 2000. */ @@ -246,8 +246,8 @@ void ENGINE_load_openssl(void); int ENGINE_register_all_complete(void); void ENGINE_cleanup(void); -ENGINE *ENGINE_new(void); +ENGINE *ENGINE_new(void); int ENGINE_free(ENGINE *engine); int ENGINE_init(ENGINE *engine); int ENGINE_finish(ENGINE *engine); -- 2.20.1