diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-09-01 17:20:38 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-09-01 17:20:38 +0000 |
commit | a9d3ff88975cb5047b8b79df01936a073d9bc4e9 (patch) | |
tree | 2ea5ba922fb3a7b6fd52f0f054b167c8b343b1b0 /regress/lib/libcrypto | |
parent | ee151acfa4d9e10381d1fef8b04835cc682a9624 (diff) |
symbols: remove special case for cpuid_setup and cpu_caps
The former is gone and the latter is available in crypto.h.
Diffstat (limited to 'regress/lib/libcrypto')
-rw-r--r-- | regress/lib/libcrypto/symbols/symbols.awk | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/regress/lib/libcrypto/symbols/symbols.awk b/regress/lib/libcrypto/symbols/symbols.awk index c9a72660014..8ea68b681e4 100644 --- a/regress/lib/libcrypto/symbols/symbols.awk +++ b/regress/lib/libcrypto/symbols/symbols.awk @@ -1,4 +1,4 @@ -# $OpenBSD: symbols.awk,v 1.12 2024/07/10 13:11:22 tb Exp $ +# $OpenBSD: symbols.awk,v 1.13 2024/09/01 17:20:37 tb Exp $ # Copyright (c) 2018,2020 Theo Buehler <tb@openbsd.org> # @@ -20,13 +20,6 @@ BEGIN { printf("#include \"include_headers.c\"\n\n") } -# These are machdep. -/^OPENSSL_cpuid_setup$/ || -/^OPENSSL_cpu_caps$/ { - printf("/* skipped %s */\n", $0) - next -} - { symbols[$0] = $0 |