source: trunk/cscrypt/openssl_mods.h@ 1

Last change on this file since 1 was 1, checked in by root, 14 years ago

initial import

File size: 283 bytes
RevLine 
[1]1/* openssl_mods.h */
2#ifndef _OPENSSL_MODSH
3#define _OPENSSL_MODSH
4
5#define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__)
6#define OPENSSL_free(addr) CRYPTO_free(addr)
7
8void *CRYPTO_malloc(int num, const char *file, int line);
9void CRYPTO_free(void *);
10
11#endif
Note: See TracBrowser for help on using the repository browser.