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
commit414d06b974cd552a24477ace1af4b68ec8d5b1ca (patch)
tree6dc8d5d214c1da02611d2c43bce506345eda3c7c /src
parent49dc29d6aa58d255e134acf0e5fed4279836ec5b (diff)
downloadopenbsd-414d06b974cd552a24477ace1af4b68ec8d5b1ca.tar.gz
openbsd-414d06b974cd552a24477ace1af4b68ec8d5b1ca.tar.bz2
openbsd-414d06b974cd552a24477ace1af4b68ec8d5b1ca.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 {