diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-12-08 16:53:23 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2002-12-08 16:53:23 +0000 |
commit | c9d1c6dd712606ff734b79f0c6bbdac15e055d11 (patch) | |
tree | 35bddcc5a6e7e480a63cd67f907a952830a492a0 /lib/gnutls_mem.c | |
parent | feea788493cbfc40b9b1364869d962be353b665f (diff) | |
download | gnutls-c9d1c6dd712606ff734b79f0c6bbdac15e055d11.tar.gz |
*** empty log message ***gnutls_0_6_0
Diffstat (limited to 'lib/gnutls_mem.c')
-rw-r--r-- | lib/gnutls_mem.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/gnutls_mem.c b/lib/gnutls_mem.c index 05d204fded..78840a2682 100644 --- a/lib/gnutls_mem.c +++ b/lib/gnutls_mem.c @@ -107,7 +107,9 @@ char* ret; * The allocation function used is the one set by gnutls_global_set_mem_functions(). * **/ -void* gnutls_malloc( size_t s); +void* gnutls_malloc( size_t s) +{ +} /** * gnutls_free - Returns a free() like function @@ -118,7 +120,9 @@ void* gnutls_malloc( size_t s); * The deallocation function used is the one set by gnutls_global_set_mem_functions(). * **/ -void gnutls_free( void* ptr); +void gnutls_free( void* ptr) +{ +} #endif |