From f43847518f7fe0930205f9b6aeb7ea4c6596860b Mon Sep 17 00:00:00 2001 From: tb <> Date: Wed, 6 Nov 2024 04:08:26 +0000 Subject: Rename malloc-wrapper.c to crypto_memory.c Apparently it's important that five trivial one-line wrappers remain in a file with the ISC license. So instead of cleaning the root directory of our favorite pigsty further by squashing all the useless legacy garbage into a single file, rename the oddly-named malloc-wrapper.c into crypto_memory.c. discussed with beck, jsing --- src/lib/libcrypto/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/Makefile') diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index ce5adf0f5a..9158a2e594 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.224 2024/11/05 11:21:15 tb Exp $ +# $OpenBSD: Makefile,v 1.225 2024/11/06 04:08:26 tb Exp $ LIB= crypto LIBREBUILD=y @@ -61,7 +61,7 @@ SRCS+= crypto_ex_data.c SRCS+= crypto_init.c SRCS+= crypto_legacy.c SRCS+= crypto_lock.c -SRCS+= malloc-wrapper.c +SRCS+= crypto_memory.c # aes/ SRCS+= aes.c -- cgit v1.2.3-55-g6feb