6 lines
84 B
C
6 lines
84 B
C
#include <openssl/crypto.h>
|
|
|
|
void opensslFree(void *ptr) {
|
|
OPENSSL_free(ptr);
|
|
}
|