summaryrefslogtreecommitdiff
path: root/lib/libcrypto
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-03-02 09:51:37 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-03-02 09:51:37 +0000
commitcb99a39af35f7c866aa7cc1bfeaab43cb637f40c (patch)
tree420c9eb28f502de8ff287fbd7e4596699c7b2717 /lib/libcrypto
parenta6a32d480457946505738e97501a880458349ddf (diff)
Remove unused OBJ_create_and_add_object()
This is an alias for OBJ_create(). I haven't dug into its history. ok jsing
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/objects/objects.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/objects/objects.h b/lib/libcrypto/objects/objects.h
index 2804e6fe1cd..1a8490bd1ae 100644
--- a/lib/libcrypto/objects/objects.h
+++ b/lib/libcrypto/objects/objects.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: objects.h,v 1.28 2024/03/02 09:50:47 tb Exp $ */
+/* $OpenBSD: objects.h,v 1.29 2024/03/02 09:51:36 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -86,8 +86,6 @@ typedef struct obj_name_st {
const void *data;
} OBJ_NAME;
-#define OBJ_create_and_add_object(a,b,c) OBJ_create(a,b,c)
-
void OBJ_NAME_do_all(int type, void (*fn)(const OBJ_NAME *, void *arg),
void *arg);
void OBJ_NAME_do_all_sorted(int type, void (*fn)(const OBJ_NAME *, void *arg),