source: trunk/cscrypt/openssl_mods.h@ 5

Last change on this file since 5 was 5, checked in by smurzch2, 14 years ago

Merge branch 'git-oscam'

File size: 283 bytes
Line 
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.