Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
OPENSSL_malloc, OPENSSL_realloc, OPENSSL_free, OPENSSL_strdup, CRYPTO_malloc, CRYPTO_realloc, CRYPTO_free, CRYPTO_strdup — legacy OpenSSL memory allocation wrappersSYNOPSIS
#include <openssl/crypto.h>OPENSSL_malloc(size_t num);
OPENSSL_realloc(void *addr, size_t num);
OPENSSL_free(void *addr);
OPENSSL_strdup(const char *str);
CRYPTO_malloc(size_t num, const char *file, int line);
CRYPTO_realloc(void *p, size_t num, const char *file, int line);
CRYPTO_free(void *str, const char *, int);
CRYPTO_strdup(const char *p, const char *file, int line);