Skip to content

Commit 96e90d9

Browse files
author
tb
committed
fix symbols test to actually detect missing _libre_ symbols
1 parent 026a2ea commit 96e90d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/regress/lib/libcrypto/symbols/symbols.awk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 $
22

33
# Copyright (c) 2018,2020 Theo Buehler <[email protected]>
44
#
@@ -26,7 +26,7 @@ BEGIN {
2626
# Undefine aliases, so we don't accidentally leave them in Symbols.list.
2727
printf("#ifdef %s\n#undef %s\n#endif\n", $0, $0)
2828

29-
printf("static typeof(%s) *_libre_%s;\n", $0, $0);
29+
printf("extern typeof(%s) *_libre_%s;\n", $0, $0);
3030
}
3131

3232
END {

0 commit comments

Comments
 (0)