From: Richard Levitte Date: Thu, 23 Jun 2011 09:43:54 +0000 (+0000) Subject: Add symbols for the parameters on a couple more functions. X-Git-Tag: OpenSSL-fips-2_0-rc1~297 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=ab688c234de0c6a2ace778a97dee9f2dc09feaff Add symbols for the parameters on a couple more functions. --- diff --git a/crypto/crypto.h b/crypto/crypto.h index 64fbfe02ee..34c2d75808 100644 --- a/crypto/crypto.h +++ b/crypto/crypto.h @@ -501,10 +501,10 @@ void CRYPTO_get_mem_debug_functions(void (**m)(void *,int,const char *,int,int), long (**go)(void)); void *CRYPTO_malloc_locked(int num, const char *file, int line); -void CRYPTO_free_locked(void *); +void CRYPTO_free_locked(void *ptr); void *CRYPTO_malloc(int num, const char *file, int line); char *CRYPTO_strdup(const char *str, const char *file, int line); -void CRYPTO_free(void *); +void CRYPTO_free(void *ptr); void *CRYPTO_realloc(void *addr,int num, const char *file, int line); void *CRYPTO_realloc_clean(void *addr,int old_num,int num,const char *file, int line);