summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2025-08-22 15:49:26 +0000
committertb <>2025-08-22 15:49:26 +0000
commit96e90d9a64a349db39fee395333f192f2292d1ad (patch)
tree6dc8d5d214c1da02611d2c43bce506345eda3c7c /src
parent026a2ea5b1aabdfbf27997ffd198cd73b3b5ee08 (diff)
downloadopenbsd-96e90d9a64a349db39fee395333f192f2292d1ad.tar.gz
openbsd-96e90d9a64a349db39fee395333f192f2292d1ad.tar.bz2
openbsd-96e90d9a64a349db39fee395333f192f2292d1ad.zip
fix symbols test to actually detect missing _libre_ symbols
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/symbols/symbols.awk4
1 files changed, 2 insertions, 2 deletions
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 @@
1# $OpenBSD: symbols.awk,v 1.13 2024/09/01 17:20:37 tb Exp $ 1# $OpenBSD: symbols.awk,v 1.14 2025/08/22 15:49:26 tb Exp $
2 2
3# Copyright (c) 2018,2020 Theo Buehler <tb@openbsd.org> 3# Copyright (c) 2018,2020 Theo Buehler <tb@openbsd.org>
4# 4#
@@ -26,7 +26,7 @@ BEGIN {
26 # Undefine aliases, so we don't accidentally leave them in Symbols.list. 26 # Undefine aliases, so we don't accidentally leave them in Symbols.list.
27 printf("#ifdef %s\n#undef %s\n#endif\n", $0, $0) 27 printf("#ifdef %s\n#undef %s\n#endif\n", $0, $0)
28 28
29 printf("static typeof(%s) *_libre_%s;\n", $0, $0); 29 printf("extern typeof(%s) *_libre_%s;\n", $0, $0);
30} 30}
31 31
32END { 32END {