From 96e90d9a64a349db39fee395333f192f2292d1ad Mon Sep 17 00:00:00 2001 From: tb <> Date: Fri, 22 Aug 2025 15:49:26 +0000 Subject: fix symbols test to actually detect missing _libre_ symbols --- src/regress/lib/libcrypto/symbols/symbols.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/regress/lib/libcrypto/symbols/symbols.awk b/src/regress/lib/libcrypto/symbols/symbols.awk index 8ea68b681e..caeea1031e 100644 --- a/src/regress/lib/libcrypto/symbols/symbols.awk +++ b/src/regress/lib/libcrypto/symbols/symbols.awk @@ -1,4 +1,4 @@ -# $OpenBSD: symbols.awk,v 1.13 2024/09/01 17:20:37 tb Exp $ +# $OpenBSD: symbols.awk,v 1.14 2025/08/22 15:49:26 tb Exp $ # Copyright (c) 2018,2020 Theo Buehler # @@ -26,7 +26,7 @@ BEGIN { # Undefine aliases, so we don't accidentally leave them in Symbols.list. printf("#ifdef %s\n#undef %s\n#endif\n", $0, $0) - printf("static typeof(%s) *_libre_%s;\n", $0, $0); + printf("extern typeof(%s) *_libre_%s;\n", $0, $0); } END { -- cgit v1.2.3-55-g6feb