From d56c8fa8260d226f98b26f017b45b9c2b135f38d Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Wed, 18 Aug 2021 16:06:57 +0000 Subject: This commit was manufactured by cvs2git to create tag 'tb_20210818'. --- src/lib/libcrypto/man/OPENSSL_malloc.3 | 110 --------------------------------- 1 file changed, 110 deletions(-) delete mode 100644 src/lib/libcrypto/man/OPENSSL_malloc.3 (limited to 'src/lib/libcrypto/man/OPENSSL_malloc.3') diff --git a/src/lib/libcrypto/man/OPENSSL_malloc.3 b/src/lib/libcrypto/man/OPENSSL_malloc.3 deleted file mode 100644 index e6dba165f8..0000000000 --- a/src/lib/libcrypto/man/OPENSSL_malloc.3 +++ /dev/null @@ -1,110 +0,0 @@ -.\" $OpenBSD: OPENSSL_malloc.3,v 1.9 2019/06/10 09:49:48 schwarze Exp $ -.\" -.\" Copyright (c) 2016 Ingo Schwarze -.\" -.\" Permission to use, copy, modify, and distribute this software for any -.\" purpose with or without fee is hereby granted, provided that the above -.\" copyright notice and this permission notice appear in all copies. -.\" -.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -.\" -.Dd $Mdocdate: June 10 2019 $ -.Dt OPENSSL_MALLOC 3 -.Os -.Sh NAME -.Nm OPENSSL_malloc , -.Nm OPENSSL_realloc , -.Nm OPENSSL_free , -.Nm OPENSSL_strdup , -.Nm CRYPTO_malloc , -.Nm CRYPTO_realloc , -.Nm CRYPTO_free , -.Nm CRYPTO_strdup -.Nd legacy OpenSSL memory allocation wrappers -.Sh SYNOPSIS -.In openssl/crypto.h -.Ft void * -.Fo OPENSSL_malloc -.Fa "size_t num" -.Fc -.Ft void * -.Fo OPENSSL_realloc -.Fa "void *addr" -.Fa "size_t num" -.Fc -.Ft void -.Fo OPENSSL_free -.Fa "void *addr" -.Fc -.Ft char * -.Fo OPENSSL_strdup -.Fa "const char *str" -.Fc -.Ft void * -.Fo CRYPTO_malloc -.Fa "size_t num" -.Fa "const char *file" -.Fa "int line" -.Fc -.Ft void * -.Fo CRYPTO_realloc -.Fa "void *p" -.Fa "size_t num" -.Fa "const char *file" -.Fa "int line" -.Fc -.Ft void -.Fo CRYPTO_free -.Fa "void *str" -.Fa "const char *" -.Fa int -.Fc -.Ft char * -.Fo CRYPTO_strdup -.Fa "const char *p" -.Fa "const char *file" -.Fa "int line" -.Fc -.Sh DESCRIPTION -Do not use any of the interfaces documented here in new code. -They are provided purely for compatibility with legacy application code. -.Pp -All 8 of these functions are wrappers around the corresponding -standard -.Xr malloc 3 , -.Xr realloc 3 , -.Xr free 3 , -and -.Xr strdup 3 -functions. -.Sh RETURN VALUES -These functions return the same type and value as the corresponding -standard functions. -.Sh SEE ALSO -.Xr crypto 3 -.Sh HISTORY -.Fn CRYPTO_malloc , -.Fn CRYPTO_realloc , -and -.Fn CRYPTO_free -first appeared in SSLeay 0.6.4 and have been available since -.Ox 2.4 . -.Pp -.Fn OPENSSL_malloc , -.Fn OPENSSL_realloc , -and -.Fn OPENSSL_free -first appeared in OpenSSL 0.9.6 and have been available since -.Ox 2.9 . -.Pp -.Fn CRYPTO_strdup -and -.Fn OPENSSL_strdup -first appeared in OpenSSL 0.9.8j and have been available since -.Ox 4.5 . -- cgit v1.2.3-55-g6feb