Files

6 lines
84 B
C
Raw Permalink Normal View History

#include <openssl/crypto.h>
void opensslFree(void *ptr) {
OPENSSL_free(ptr);
}