From: tb Date: Sat, 13 Jan 2024 16:32:53 +0000 (+0000) Subject: Move errno.h inclusion where it belongs X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=949c64fb51fee0c1122f2c86e37a606b9f2f1b52;p=openbsd Move errno.h inclusion where it belongs --- diff --git a/lib/libcrypto/stack/stack.c b/lib/libcrypto/stack/stack.c index 65bd3217d12..f5c568dc5e7 100644 --- a/lib/libcrypto/stack/stack.c +++ b/lib/libcrypto/stack/stack.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stack.c,v 1.23 2023/04/24 15:35:22 beck Exp $ */ +/* $OpenBSD: stack.c,v 1.24 2024/01/13 16:32:53 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -56,6 +56,7 @@ * [including the GNU Public Licence.] */ +#include #include #include @@ -65,8 +66,6 @@ #undef MIN_NODES #define MIN_NODES 4 -#include - int (*sk_set_cmp_func(_STACK *sk, int (*c)(const void *, const void *)))( const void *, const void *)